-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 2.2 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
{
"name": "code3d-packages",
"private": true,
"license": "SEE LICENSE IN LICENSE",
"author": "vilicvane",
"type": "module",
"scripts": {
"postinstall": "patch-package --error-on-fail",
"3": "npm install && npm dedupe && npm install",
"clean": "rimraf dist --glob packages/*/{.cache,bld,dist}",
"build:packages": "node scripts/build-packages.mjs",
"build:solver": "npm run build --workspace @code3d/solver",
"build": "npm run lint-prettier && npm run clean && npm run build:packages && npm run build --workspace @code3d/app && npm run build --workspace @code3d/web",
"render:web-images": "npm run render-images --workspace @code3d/web",
"deploy": "node packages/web/scripts/check-site.mjs && wrangler deploy",
"dev": "npm run build:packages && npm run dev --workspace @code3d/app --",
"lint-prettier": "prettier --check .",
"format": "prettier --write .",
"app": "npm run --workspace @code3d/app",
"core": "npm run --workspace @code3d/core",
"layout": "npm run --workspace @code3d/layout",
"materials": "npm run --workspace @code3d/materials",
"gears": "npm run --workspace @code3d/gears",
"screws": "npm run --workspace @code3d/screws",
"web": "npm run --workspace @code3d/web",
"build:opencascade": "npm run build --workspace @code3d/opencascade",
"test:types": "npm run test:types --workspaces --if-present",
"test": "npm run build:packages && npm run test:types && npm run test:release && npm run test:run --workspaces --if-present",
"test:packages": "node scripts/test-packages.mjs",
"test:release": "node --test test/package-publishing.test.mjs",
"pack:packages": "node scripts/package-artifacts.mjs"
},
"workspaces": [
"packages/agent",
"packages/cli",
"packages/app",
"packages/core",
"packages/gears",
"packages/layout",
"packages/materials",
"packages/opencascade",
"packages/solver",
"packages/screws",
"packages/web"
],
"devDependencies": {
"@types/node": "^24.10.1",
"patch-package": "8.0.1",
"prettier": "^3.9.6",
"rimraf": "^6.1.2",
"typescript": "^7.0.2",
"wrangler": "^4.129.0",
"esbuild": "0.28.2"
},
"overrides": {
"dompurify": "3.4.14"
}
}