-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
89 lines (89 loc) · 2.13 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "vue-model-view",
"version": "1.2.4",
"private": false,
"main": "dist/vue-3d-viewer.dist.js",
"typings": "src/lib/index.js",
"files": [
"dist",
"src/lib"
],
"repository": {
"type": "git",
"url": "https://github.com/kuangch/vue-model-view"
},
"keywords": [
"vue 3d viewer",
"3d",
"model viewer",
"threejs",
"三维模型显示",
"支持纹理显示隐藏",
"支持自动旋转"
],
"author": "kuangch",
"license": "ISC",
"scripts": {
"prepublishOnly": "npm run build",
"serve": "vue-cli-service serve",
"lint": "vue-cli-service lint",
"build": "rimraf dist && webpack --config build/webpack.3dviewer.js",
"build:demo": "vue-cli-service build"
},
"dependencies": {
"three": "^0.94.0",
"three-obj-loader": "^1.1.3",
"vue": "^2.5.16"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@vue/cli-plugin-babel": "^3.0.0-rc.5",
"@vue/cli-plugin-eslint": "^3.0.0-rc.5",
"@vue/cli-service": "^3.0.0-rc.5",
"babel-loader": "^8.0.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^4.1.1",
"babel-plugin-module-resolver": "^2.2.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"babel-regenerator-runtime": "^6.5.0",
"css-loader": "^2.1.0",
"node-sass": "^4.10.0",
"progress-bar-webpack-plugin": "^1.11.0",
"rimraf": "^2.5.4",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"vue-loader": "^15.2.4",
"vue-template-compiler": "^2.5.16",
"vue-template-es2015-compiler": "^1.6.0",
"webpack": "^4.14.0",
"webpack-cli": "^3.0.8",
"webpack-node-externals": "^1.7.2"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}