forked from mmiscool/BREP.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·48 lines (48 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·48 lines (48 loc) · 1.38 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
{
"name": "brep-io-kernel",
"version": "1.0.0",
"scripts": {
"dev": "pnpm generateLicenses && vite --host 0.0.0.0",
"build": "pnpm generateLicenses && vite build",
"start": "pnpm dev",
"liveTesting": "nodemon --watch src --watch tests --ext js --exec \"pnpm run test\"",
"test": "node ./src/tests/tests.js",
"debug:boolean": "node ./src/tests/debugBoolean.js",
"generateLicenses": "node ./generateLicenses.js",
"capture": "node ./scripts/capture.js & pnpm dev "
},
"type": "module",
"main": "./src/index.js",
"module": "./src/index.js",
"exports": {
".": "./src/index.js",
"./BREP": "./src/BREP/BREP.js",
"./PartHistory": "./src/PartHistory.js",
"./AssemblyConstraintHistory": "./src/assemblyConstraints/AssemblyConstraintHistory.js",
"./AssemblyConstraintRegistry": "./src/assemblyConstraints/AssemblyConstraintRegistry.js"
},
"files": [
"src/**",
"README.md",
"LICENSE.md"
],
"keywords": [],
"author": "",
"license": "See licence.md",
"dependencies": {
"@tarikjabiri/dxf": "^2.8.9",
"jszip": "^3.10.1",
"manifold-3d": "^3.3.2",
"monaco-editor": "^0.55.1",
"tess2": "^1.0.0",
"three": "^0.182.0",
"three-mesh-bvh": "^0.9.3"
},
"description": "",
"devDependencies": {
"nodemon": "^3.1.11",
"playwright": "^1.57.0",
"vite": "^7.2.7",
"vite-plugin-wasm": "^3.5.0"
}
}