forked from nashaofu/screenshots
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.53 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
{
"name": "shortcut-capture",
"version": "1.2.1",
"description": "electron shortcut capture plugin",
"author": "nashaofu <[email protected]>",
"main": "dist/main.js",
"files": [
"dist/**"
],
"scripts": {
"start": "electron .",
"lint": "eslint --ext .js,.vue src",
"dev": "node build/webpack.dev.conf.js",
"dev:main": "webpack --config build/main/webpack.dev.conf.js",
"dev:renderer": "webpack-dev-server --config build/renderer/webpack.dev.conf.js",
"build": "webpack --config build/webpack.prod.conf.js",
"build:main": "webpack --config build/main/webpack.prod.conf.js",
"build:renderer": "webpack --config build/renderer/webpack.prod.conf.js",
"release": "npm run build && npm publish"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nashaofu/shortcut-capture.git"
},
"peerDependencies": {
"electron": ">=2"
},
"dependencies": {
"normalize.css": "^8.0.1",
"vue": "^2.6.10"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/runtime": "^7.5.5",
"autoprefixer": "^9.6.1",
"axios": "^0.19.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"chalk": "^2.4.2",
"css-loader": "^3.1.0",
"electron": "^5.0.7",
"electron-debug": "^3.0.1",
"electron-dev-webpack-plugin": "^1.0.4",
"electron-devtools-installer": "^2.2.4",
"eslint": "^6.1.0",
"eslint-config-standard": "^13.0.1",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.2.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.3",
"file-loader": "^4.1.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.8.0",
"postcss-loader": "^3.0.0",
"pug": "^2.0.4",
"pug-plain-loader": "^1.0.0",
"registry-auth-token": "^4.0.0",
"registry-url": "^5.1.0",
"url-loader": "^2.1.0",
"vue-loader": "^15.7.1",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.36.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2",
"webpack-merge": "^4.2.1"
}
}