-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.47 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
58
59
60
{
"name": "three-lib",
"description": "基于three.js封装的快速启动项目",
"version": "0.0.3",
"repository": {
"type": "git",
"url": "git+https://github.com/kang-Z-A/three-lib.git"
},
"keywords": [
"three.js"
],
"author": {
"name": "kang-Z-A",
"url": "https://github.com/kang-Z-A"
},
"email": "[email protected]",
"license": "MIT",
"type": "module",
"module": "build/index.esm.js",
"types": "build/index.d.ts",
"exports": {
".": {
"types": "./build/index.d.ts",
"module": {
"production": "./build/index.esm.js",
"development": "./build/index.dev.esm.js",
"default": "./build/index.esm.js"
}
}
},
"files": [
"build/*"
],
"scripts": {
"clean": "if exist build rd /s /q build",
"build": "npm run clean && rollup -c"
},
"dependencies": {
"@tweenjs/tween.js": "^25.0.0",
"@types/node": "^22.9.4",
"@vue/reactivity": "^3.5.13",
"suncalc": "^1.9.0",
"three": "^0.170.0",
"three-mesh-bvh": "^0.8.3"
},
"devDependencies": {
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@types/suncalc": "^1.9.2",
"@types/three": "^0.170.0",
"rollup": "^4.27.4",
"rollup-plugin-dts": "^6.1.1",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"unplugin-auto-import": "^0.18.5",
"unplugin-vue-components": "^0.27.4"
}
}