forked from michitaro/vue-window
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.69 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.69 KB
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
{
"name": "@hscmap/vue-window",
"version": "2.2.4",
"description": "Vue component for window",
"main": "./lib/index.js",
"types": "./lib/types/index.d.ts",
"files": [
"lib/",
"standalone/dist"
],
"scripts": {
"prepare": "webpack --mode production ; yarn run standalone",
"watch": "webpack --mode development --watch",
"example": "webpack --context example --config ./example/webpack.config.js --mode development",
"example-server": "webpack-dev-server --hot --progress --context example --config ./example/webpack.config.js --mode development",
"standalone": "webpack --context standalone --config ./standalone/webpack.config.js --mode production",
"gh-pages": "yarn run example && yarn run standalone && cp standalone/dist/vue-window-standalone.js example/dist && gh-pages -d example/dist"
},
"dependencies": {
"@hscmap/vue-menu": "^2.5.0",
"tslib": "^1.9.3",
"vue": "^2.5.16",
"vue-class-component": "^6.2.0"
},
"devDependencies": {
"@types/lodash": "^4.14.112",
"css-loader": "^1.0.0",
"file-loader": "^1.1.11",
"gh-pages": "^1.2.0",
"lodash": "^4.17.10",
"node-sass": "^4.9.2",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"ts-loader": "^4.4.2",
"typescript": "^2.9.2",
"vue-loader": "^15.2.4",
"vue-property-decorator": "^7.0.0",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.16.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4"
},
"keywords": [
"Window",
"UI",
"TypeSript",
"Vuejs"
],
"author": "Koike Michitaro",
"license": "MIT",
"homepage": "https://github.com/michitaro/vue-window",
"repository": "github:michitaro/vue-window"
}