-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.34 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
{
"name": "dd",
"version": "0.1.0",
"description": "A JupyterLab extension for rendering dd files.",
"author": " <>",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
],
"jupyterlab": {
"mimeExtension": true
},
"scripts": {
"clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
"build": "tsc",
"prepare": "npm run clean && npm run build",
"watch": "tsc -w",
"extension:install": "jupyter labextension install dd",
"extension:uninstall": "jupyter labextension uninstall dd",
"extension:enable": "jupyter labextension enable dd",
"extension:disable": "jupyter labextension disable dd"
},
"dependencies": {
"@jupyterlab/codemirror": "^1.1.3",
"@jupyterlab/rendermime-interfaces": "^1.3.0",
"@phosphor/widgets": "^1.5.0",
"@types/codemirror": "0.0.79",
"@types/sparqljs": "^2.1.0",
"@types/uuid": "^3.4.5",
"codemirror": "^5.49.2",
"phosphor-dockpanel": "^0.9.7",
"phosphor-float-area": "^0.1.2",
"sparqljs": ""
},
"devDependencies": {
"rimraf": "^2.6.3",
"typescript": "~3.5.2"
}
}