forked from manthrax/THREE-CSGMesh
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.17 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
{
"name": "three-csgmesh",
"version": "1.0.0",
"description": "Constructive Solid Geometry",
"directories": {
"doc": "docs"
},
"scripts": {
"build": "webpack --config ./src/client/webpack.prod.js",
"dev": "webpack serve --config ./src/client/webpack.dev.js",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./dist/server/server.js",
"build-CSGMesh": "tsc.cmd ./src/client/CSGMesh.ts --outdir ./dist/client --target ES6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sean-Bradley/THREE-CSGMesh.git"
},
"keywords": [
"threejs",
"csg"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Sean-Bradley/THREE-CSGMesh/issues"
},
"homepage": "https://github.com/Sean-Bradley/THREE-CSGMesh#readme",
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.7.9",
"@types/three": "^0.169.0",
"three": "^0.158.0",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"dependencies": {
"express": "^4.21.1"
}
}