-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.4 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.4 KB
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
{
"name": "@jupyterlab/jscad-extension",
"version": "0.1.0",
"description": "JSCAD renderer for JupyterLab",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/jupyterlab/jupyter-renderers",
"bugs": {
"url": "https://github.com/jupyterlab/jupyter-renderers/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jupyterlab/jupyter-renderers.git"
},
"license": "BSD-3-Clause",
"author": {
"name": "Terry Geng",
"email": "terry@terriex.com"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib/"
},
"files": [
"lib/*.d.ts",
"lib/*.js",
"style/**/*",
"src/*.json"
],
"scripts": {
"build": "jlpm run build:lib && jlpm run build:labextension:dev",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc",
"build:prod": "jlpm run build:lib && jlpm run build:labextension",
"clean": "jlpm run clean:lib",
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension && jlpm run clean:dist",
"clean:dist": "rimraf dist",
"clean:labextension": "rimraf ./jupyterlab-jscad/labextension",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"install:extension": "jupyter labextension develop --overwrite .",
"prepack": "npm run clean && npm run build",
"prepare": "jlpm run clean && jlpm run build:prod",
"watch": "run-p watch:src watch:labextension",
"watch:labextension": "jupyter labextension watch .",
"watch:src": "tsc -w"
},
"dependencies": {
"@jscad/modeling": "^2.11.0",
"@jscad/regl-renderer": "^2.6.4",
"@jscad/stl-serializer": "^2.1.13",
"@jupyterlab/apputils": "^3.2.8",
"@jupyterlab/rendermime-interfaces": "^3.2.8",
"@lumino/messaging": "^1.10.1",
"@lumino/widgets": "^1.31.1",
"gl-mat4": "^1.2.0",
"gl-vec3": "^1.1.3"
},
"devDependencies": {
"@jupyterlab/builder": "^3.2.8",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"typescript": "~4.1.3"
},
"jupyterlab": {
"mimeExtension": true,
"outputDir": "jupyterlab-jscad/labextension"
},
"styleModule": "style/index.js"
}