-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
137 lines (137 loc) · 3.68 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "@tabnine/jupyterlab",
"version": "0.0.24",
"description": "JupyterLab client for Tabnine",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"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",
"tabnine"
],
"homepage": "https://github.com/codota/tabnine-jupyterlab",
"bugs": {
"url": "https://github.com/codota/tabnine-jupyterlab/issues"
},
"license": "BSD-3-Clause",
"author": {
"name": "Tabnine",
"email": "[email protected]"
},
"main": "out/src/index.js",
"types": "out/src/index.d.ts",
"repository": {
"type": "git",
"url": "[email protected]:codota/tabnine-jupyterlab.git"
},
"scripts": {
"build": "jlpm run build:lib && jlpm run build:labextension:dev",
"build:all": "jlpm run build:lib && jlpm run build:labextension",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc",
"build:prod": "jlpm run clean && jlpm run build:lib && jlpm run build:labextension",
"clean": "jlpm run clean:lib",
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
"clean:labextension": "rimraf jupyterlab_tabnine/labextension",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"install:extension": "jlpm run build",
"prepare": "jlpm run clean && jlpm run build:prod",
"watch": "run-p watch:src watch:labextension",
"watch:labextension": "jupyter labextension watch .",
"prettier": "prettier -w .",
"watch:src": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^3.1.6",
"@jupyterlab/apputils": "3.1.6",
"@jupyterlab/codeeditor": "^3.1.6",
"@jupyterlab/codemirror": "^3.1.6",
"@jupyterlab/completer": "^3.1.6",
"@jupyterlab/launcher": "^3.1.6",
"@jupyterlab/mainmenu": "^3.1.6",
"@jupyterlab/notebook": "^3.1.6",
"@jupyterlab/outputarea": "^3.1.6",
"@jupyterlab/statedb": "^3.1.6",
"@jupyterlab/statusbar": "^3.1.6",
"@jupyterlab/translation": "^3.1.6",
"@jupyterlab/ui-components": "3.1.6",
"@lumino/algorithm": "^1.6.0",
"@lumino/coreutils": "^1.8.0",
"@lumino/datagrid": "^0.27.0",
"@lumino/disposable": "^1.7.0",
"semver": "^7.3.5"
},
"devDependencies": {
"@jupyterlab/builder": "^3.1.6",
"@jupyterlab/fileeditor": "^3.1.6",
"@types/semver": "^7.3.8",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jsdoc": "^36.0.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.18.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"typescript": "~4.1.3"
},
"jupyterlab": {
"discovery": {
"server": {
"managers": [
"pip"
],
"base": {
"name": "jupyterlab_tabnine"
}
}
},
"extension": true,
"schemaDir": "schema",
"outputDir": "jupyterlab_tabnine/labextension",
"disabledExtensions": [
"@jupyterlab/completer-extension:notebooks",
"@jupyterlab/completer-extension:files"
]
},
"peerDependencies": {
"codemirror": "~5.61.0"
}
}