-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 873 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 873 Bytes
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
{
"name": "@dreamoment/multi-material",
"version": "0.0.1",
"type": "module",
"types": "dist/index.d.ts",
"main": "dist/index.es.js",
"author": "dreamoment-npm",
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"dev": "vite",
"build:example": "vue-tsc && vite build --mode example",
"build:lib": "vue-tsc && vite build --mode lib",
"publish:patch": "npm version patch && npm publish"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@types/three": "^0.159.0",
"@vitejs/plugin-vue": "^4.5.2",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vite-plugin-dts": "^3.6.4",
"vue": "^3.3.11",
"vue-tsc": "^1.8.25"
},
"dependencies": {
"@tweenjs/tween.js": "^21.0.0",
"normalize.css": "^8.0.1",
"three": "^0.159.0"
}
}