forked from LeonGiering/gp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·52 lines (52 loc) · 1.32 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
{
"name": "gp-5-remesh",
"version": "1.0.0",
"description": "LMU Munich Geometry Processing",
"main": "src/main.ts",
"scripts": {
"start": "npx webpack serve",
"build": "npx webpack --env production",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile"
},
"repository": {
"type": "git",
"url": "github.com/mimuc/gp"
},
"keywords": [
"Computer Graphics",
"Geometry Processing"
],
"author": "Changkun Ou <[email protected]>",
"license": "GPL-3.0+",
"devDependencies": {
"@types/dat.gui": "^0.7.6",
"@types/node": "^14.11.2",
"@types/three": "^0.133.0",
"copy-webpack-plugin": "^8.1.0",
"gts": "^3.1.0",
"html-webpack-plugin": "^5.3.1",
"javascript-obfuscator": "^0.6.2",
"path-browserify": "^1.0.1",
"raw-loader": "^4.0.2",
"ts-loader": "^8.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"webpack": "^5.30.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^4.0.0-beta.3",
"webpack-obfuscator": "^0.6.2",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"stream-browserify": "^3.0.0"
},
"dependencies": {
"@penrose/linear-algebra": "^1.0.1",
"dat.gui": "^0.7.7",
"three": "^0.133.0"
}
}