-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.04 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.04 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
{
"name": "opengeometry",
"author": "Vishwajeet Vinayak Mane",
"license": "MPL-2.0",
"version": "2.0.10",
"description": "CAD kernel for the web built with Rust, WebAssembly, and Three.js for browser CAD, AEC/BIM, and geometry-heavy tools.",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "vite",
"test": "cargo test --manifest-path main/opengeometry/Cargo.toml && cargo test --examples --manifest-path main/opengeometry/Cargo.toml",
"lint": "eslint main/opengeometry-three/src/**/*.ts --fix",
"lint:check": "eslint main/opengeometry-three/src/**/*.ts",
"build-three": "rollup -c rollup.config.js",
"build-example-three": "npm --prefix main/opengeometry-three run build-example-three",
"build-core": "cd main/opengeometry && wasm-pack build --target web && cargo build --release",
"prepare-dist": "node ./scripts/prepare-dist.mjs",
"copy-wasm": "npm run prepare-dist",
"build": "npm run build-core && npm run build-three && npm run prepare-dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenGeometry-io/OpenGeometry.git"
},
"keywords": [
"opengeometry",
"cad",
"cad-kernel",
"browser-cad",
"threejs",
"three.js",
"geometry",
"webassembly",
"wasm",
"aec",
"bim",
"ifc",
"step",
"stl",
"parametric-modeling"
],
"bugs": {
"url": "https://github.com/OpenGeometry-io/OpenGeometry/issues"
},
"homepage": "https://docs.opengeometry.io",
"peerDependencies": {
"three": ">=0.168.0"
},
"dependencies": {
"uuid": "^10.0.0"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/three": "^0.168.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"eslint": "^9.35.0",
"rollup": "^4.21.3",
"tslib": "^2.7.0",
"vite": "^6.2.2"
}
}