-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
47 lines (47 loc) · 1.08 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
{
"name": "stats-gl",
"version": "3.6.0",
"type": "module",
"author": "Renaud ROHLINGER (https://github.com/RenaudRohlinger)",
"homepage": "https://github.com/RenaudRohlinger/stats-gl",
"repository": "https://github.com/RenaudRohlinger/stats-gl",
"license": "MIT",
"files": [
"dist/*",
"lib/*"
],
"types": "./dist/stats-gl.d.ts",
"main": "./dist/main.cjs",
"module": "./dist/main.js",
"exports": {
".": {
"types": "./dist/stats-gl.d.ts",
"require": "./dist/main.cjs",
"import": "./dist/main.js"
}
},
"sideEffects": false,
"scripts": {
"dev": "vite dev --debug",
"serve": "vite serve",
"build": "tsc && vite build && rollup -c && node ./scripts/copyBuild.js",
"preview": "vite preview"
},
"devDependencies": {
"fs-extra": "^11.2.0",
"path": "^0.12.7",
"rollup": "^4.24.3",
"rollup-plugin-dts": "^5.3.1",
"typescript": "^5.6.3",
"vite": "^4.5.5",
"@types/three": "*"
},
"peerDependencies": {
"three": "*"
},
"peerDependenciesMeta": {
"three": {
"optional": true
}
}
}