-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
45 lines (45 loc) · 1.09 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
{
"name": "@jupytercad/opencascade",
"version": "3.0.0-alpha.5",
"description": "The custom OpenCascade build for JupyterCAD.",
"keywords": [
"jupyter",
"jupyterlab"
],
"homepage": "https://github.com/jupytercad/JupyterCAD",
"bugs": {
"url": "https://github.com/jupytercad/JupyterCAD/issues"
},
"license": "BSD-3-Clause",
"author": {
"name": "JupyterCad contributors"
},
"files": [
"lib/index.js",
"lib/index.d.ts",
"lib/jupytercad.opencascade.js",
"lib/jupytercad.opencascade.d.ts",
"lib/jupytercad.opencascade.wasm"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/jupytercad/JupyterCAD.git"
},
"scripts": {
"build": "tsc && node build_opencascade_wasm.js",
"build:prod": "tsc && node build_opencascade_wasm.js",
"clean": "rimraf tsconfig.tsbuildinfo lib"
},
"devDependencies": {
"copyfiles": "^2.4.1",
"js-yaml": "^4.1.0",
"rimraf": "^3.0.2",
"tar": "^7.4.3",
"typescript": "^5"
},
"publishConfig": {
"access": "public"
}
}