forked from Qusic/atom-youcompleteme
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
100 lines (100 loc) · 2.19 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "TabNine",
"version": "4.0.9",
"description": "Tabnine - Code Faster with the All-Language AI Assistant for Code Completion, autocomplete JavaScript, Python, TypeScript, PHP, Go, Java, node.js, Ruby, C/C++, HTML/CSS, C#, Rust, SQL, Bash, Kotlin, React, Swift, Scala, Sass, Perl, Objective C, Node JS, Matlab, Haskell, Dart, Angular",
"repository": "https://github.com/codota/tabnine-atom",
"license": "MIT",
"keywords": [
"javascript",
"python",
"typescript",
"php",
"autocomplete",
"ruby",
"java",
"go",
"golang",
"bash",
"kotlin",
"html",
"css",
"ocaml",
"perl",
"rust",
"julia",
"lua",
"haskell",
"c",
"cpp",
"c++",
"csharp",
"c#",
"react",
"swift",
"objective-c",
"objectivec",
"ai",
"method completion",
"intellicode",
"intellisense",
"snippets",
"kite",
"nodejs",
"node",
"node.js",
"jupyter"
],
"main": "./dist/main",
"engines": {
"atom": ">=1.15.0 <2.0.0"
},
"configSchema": {
"suggestionPriority": {
"description": "Snippets etc have priority of 1. Requires Atom restart",
"type": "integer",
"default": 6,
"order": 20
}
},
"scripts": {
"atom:prepublish": "yarn --frozen-lockfile && webpack --mode production",
"compile": "webpack --mode development --watch",
"build": "webpack --mode development"
},
"dependencies": {
"atom-package-deps": "^8.0.0",
"await-semaphore": "^0.1.3",
"extract-zip": "^2.0.1",
"https-proxy-agent": "^5.0.0",
"semver": "^7.3.5",
"tmp": "^0.2.1"
},
"devDependencies": {
"@types/atom": "^1.40.11",
"@types/node": "^16.10.2",
"@types/semver": "^7.3.8",
"@types/tmp": "^0.2.1",
"terser-webpack-plugin": "^5.2.4",
"ts-loader": "^9.2.6",
"typescript": "^4.4.3",
"webpack": "^5.55.1",
"webpack-cli": "^4.8.0"
},
"package-deps": [
"autocomplete-plus"
],
"providedServices": {
"autocomplete.provider": {
"versions": {
"2.0.0": "getProvider"
}
}
},
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
}
}