-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
46 lines (46 loc) · 1.18 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
{
"name": "vue-3d-loader",
"private": false,
"version": "2.2.4",
"main": "dist/vue-3d-loader.cjs.js",
"module": "dist/vue-3d-loader.esm.js",
"types": "dist/types/index.d.ts",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build && npm run build:types",
"build:types": "node scripts/build-types.js",
"build:example": "vue-tsc --noEmit && vite build --mode examples",
"build:docker": "vue-tsc --noEmit && vite build --mode docker",
"preview": "vite preview"
},
"dependencies": {
"@types/three": "^0.143.0",
"three": "^0.143.0",
"vue": "^3.2.28"
},
"devDependencies": {
"@vitejs/plugin-vue": "^2.3.3",
"ts-morph": "^15.1.0",
"typescript": "^4.7.4",
"vite": "^2.9.9",
"vite-plugin-eslint": "^1.6.1",
"vite-plugin-vue-setup-extend": "^0.4.0",
"vue-tsc": "^0.38.5"
},
"repository": {
"type": "git",
"url": "https://github.com/king2088/vue-3d-loader.git"
},
"bugs": {
"url": "https://github.com/king2088/vue-3d-loader/issues"
},
"homepage": "https://github.com/king2088/vue-3d-loader",
"keywords": [
"vue",
"3d",
"threeJS",
"3d viewer",
"vue 3d"
],
"license": "MIT"
}