-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
75 lines (75 loc) · 4.48 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
{
"name": "bitbybit",
"version": "0.19.4",
"description": "Monorepo for browser CAD which holds bitbybit.dev npm packages",
"main": "index.js",
"scripts": {
"ci-base": "cd packages/dev/base && npm ci",
"ci-core": "cd packages/dev/core && npm ci",
"ci-threejs": "cd packages/dev/threejs && npm ci",
"ci-babylonjs": "cd packages/dev/babylonjs && npm ci",
"ci-occt-worker": "cd packages/dev/occt-worker && npm ci",
"ci-occt": "cd packages/dev/occt && npm ci",
"ci-jscad-worker": "cd packages/dev/jscad-worker && npm ci",
"ci-jscad": "cd packages/dev/jscad && npm ci",
"ci-manifold-worker": "cd packages/dev/manifold-worker && npm ci",
"ci-manifold": "cd packages/dev/manifold && npm ci",
"ci-packages": "npm run ci-base && npm run ci-core && npm run ci-threejs && npm run ci-babylonjs && npm run ci-occt-worker && npm run ci-occt && npm run ci-jscad-worker && npm run ci-jscad && npm run ci-manifold-worker && npm run ci-manifold",
"rm-dist-base-if-exists": "rm -rf packages/dev/base/dist || true",
"rm-dist-core-if-exists": "rm -rf packages/dev/core/dist || true",
"rm-dist-threejs-if-exists": "rm -rf packages/dev/threejs/dist || true",
"rm-dist-babylonjs-if-exists": "rm -rf packages/dev/babylonjs/dist || true",
"rm-dist-occt-worker-if-exists": "rm -rf packages/dev/occt-worker/dist || true",
"rm-dist-occt-if-exists": "rm -rf packages/dev/occt/dist || true",
"rm-dist-jscad-worker-if-exists": "rm -rf packages/dev/jscad-worker/dist || true",
"rm-dist-jscad-if-exists": "rm -rf packages/dev/jscad/dist || true",
"rm-dist-manifold-worker-if-exists": "rm -rf packages/dev/manifold-worker/dist || true",
"rm-dist-manifold-if-exists": "rm -rf packages/dev/manifold/dist || true",
"rm-dist-packages": "npm run rm-dist-base-if-exists && npm run rm-dist-core-if-exists && npm run rm-dist-threejs-if-exists && npm run rm-dist-babylonjs-if-exists && npm run rm-dist-occt-worker-if-exists && npm run rm-dist-occt-if-exists && npm run rm-dist-jscad-worker-if-exists && npm run rm-dist-jscad-if-exists && npm run rm-dist-manifold-worker-if-exists && npm run rm-dist-manifold-if-exists",
"build-base": "cd packages/dev/base && npm run build-p",
"build-core": "cd packages/dev/core && npm run build-p",
"build-threejs": "cd packages/dev/threejs && npm run build-p",
"build-babylonjs": "cd packages/dev/babylonjs && npm run build-p",
"build-occt-worker": "cd packages/dev/occt-worker && npm run build-p",
"build-occt": "cd packages/dev/occt && npm run build-p",
"build-jscad-worker": "cd packages/dev/jscad-worker && npm run build-p",
"build-jscad": "cd packages/dev/jscad && npm run build-p",
"build-manifold-worker": "cd packages/dev/manifold-worker && npm run build-p",
"build-manifold": "cd packages/dev/manifold && npm run build-p",
"build-packages": "npm run build-base && npm run build-occt && npm run build-jscad && npm run build-manifold && npm run build-occt-worker && npm run build-jscad-worker && npm run build-manifold-worker && npm run build-core && npm run build-babylonjs && npm run build-threejs",
"rebuild-all-packages": "npm run rm-dist-packages && npm run build-packages",
"install-rebuild-all-packages": "npm run ci-packages && npm run rebuild-all-packages",
"test-base": "cd packages/dev/base && npm run test-c",
"test-occt": "cd packages/dev/occt && npm run test-c",
"test-core": "cd packages/dev/core && npm run test-c",
"test-jscad": "cd packages/dev/jscad && npm run test-c",
"test-manifold": "cd packages/dev/manifold && npm run test-c",
"test-threejs": "cd packages/dev/threejs && npm run test-c",
"test": "npm run test-occt && npm run test-base && npm run test-core && npm run test-jscad && npm run test-manifold && npm run test-threejs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitbybit-dev/bitbybit.git"
},
"keywords": [
"CAD",
"3D",
"Geometry",
"OCCT",
"JSCAD",
"Manifold",
"ThreeJS",
"BabylonJS",
"Automotive",
"AEC"
],
"author": "Bit By Bit Developers",
"license": "MIT",
"bugs": {
"url": "https://github.com/bitbybit-dev/bitbybit/issues"
},
"homepage": "https://bitbybit.dev",
"devDependencies": {
"typescript": "^4.3.5"
}
}