forked from pmndrs/three-stdlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.66 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
{
"name": "three-stdlib",
"version": "0.0.0-semantic-released",
"private": true,
"description": "stand-alone library of threejs examples",
"keywords": [
"three",
"typescript",
"examples",
"helpers",
"abstractions",
"3d"
],
"author": "Paul Henschel (https://github.com/drcmda)",
"maintainers": [
"Cody Bennett (https://github.com/codyjasonbennett)",
"Josh Ellis (https://github.com/joshuaellis)"
],
"homepage": "https://github.com/pmndrs/three-stdlib",
"repository": "https://github.com/pmndrs/three-stdlib",
"license": "MIT",
"types": "./dist/index.d.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"sideEffects": false,
"devDependencies": {
"@types/three": "^0.128.0",
"copyfiles": "^2.4.1",
"json": "^11.0.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"three": "^0.128.0",
"typescript": "^4.7.4",
"vite": "^4.3.8"
},
"dependencies": {
"@types/draco3d": "^1.4.0",
"@types/offscreencanvas": "^2019.6.4",
"@types/webxr": "^0.5.2",
"chevrotain": "^10.1.2",
"draco3d": "^1.4.1",
"fflate": "^0.6.9",
"ktx-parse": "^0.4.5",
"mmd-parser": "^1.0.4",
"opentype.js": "^1.3.3",
"potpack": "^1.0.1",
"zstddec": "^0.0.2"
},
"peerDependencies": {
"three": ">=0.128.0"
},
"scripts": {
"build": "rimraf dist && vite build && tsc --emitDeclarationOnly && copyfiles -u 1 \"src/**/*.d.ts\" dist && copyfiles package.json README.md LICENSE dist && json -I -f dist/package.json -e \"this.private=undefined; this.types=\\\"./index.d.ts\\\"; this.main=\\\"./index.cjs\\\"; this.module=\\\"./index.js\\\";\"",
"lint": "tsc --noEmit"
}
}