forked from pmndrs/three-stdlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.57 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
57
{
"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": "./index.d.ts",
"main": "./index.cjs",
"module": "./index.js",
"exports": {
"types": "./index.d.ts",
"require": "./index.cjs",
"import": "./index.js"
},
"sideEffects": false,
"devDependencies": {
"@types/node": "^20.6.3",
"@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",
"draco3d": "^1.4.1",
"fflate": "^0.6.9",
"potpack": "^1.0.1"
},
"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.type=\\\"module\\\";\"",
"lint": "tsc --noEmit"
}
}