forked from nklayman/vue-cli-plugin-electron-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.47 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
{
"name": "vue-cli-plugin-electron-builder",
"version": "2.1.1",
"description": "Easily Build Your Vue.js App For Desktop With Electron",
"main": "index.js",
"types": "index.d.ts",
"homepage": "https://nklayman.github.io/vue-cli-plugin-electron-builder/",
"funding": "https://github.com/sponsors/nklayman",
"scripts": {
"test": "jest",
"pretest": "rimraf __tests__/projects/*",
"lint": "eslint .",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:deploy": "node ./deployDocs.js"
},
"keywords": [
"electron",
"vue",
"cli",
"vue-cli",
"vue-cli-plugin",
"webpack",
"electron-builder",
"electron-webpack"
],
"repository": "https://github.com/nklayman/vue-cli-plugin-electron-builder.git",
"author": "Noah Klayman <[email protected]>",
"license": "MIT",
"private": false,
"dependencies": {
"@vue/cli-shared-utils": "^5.0.5",
"chokidar": "^3.0.2",
"electron-builder": "^23.0.3",
"execa": "^5.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"fs-extra": "^10.0.0",
"lodash.merge": "^4.6.1",
"portfinder": "^1.0.16",
"pumpify": "^2.0.1",
"semver": "^7.3.2",
"shebang-loader": "^0.0.1",
"split2": "^4.1.0",
"terser-webpack-plugin": "^4.2.3",
"through2-filter": "^3.0.0",
"through2-map": "^3.0.0",
"unzip-crx": "^0.2.0",
"webpack": "^4.33.0",
"webpack-chain": "^6.0.0",
"webpack-merge": "^4.2.2",
"yargs": "^17.5.1"
},
"devDependencies": {
"@vue/cli": "^4.0.0",
"@vue/cli-plugin-babel": "^4.0.0",
"@vue/cli-plugin-eslint": "^5.0.0",
"@vue/cli-plugin-typescript": "^4.0.0",
"@vue/cli-plugin-unit-jest": "^4.0.0",
"@vue/cli-plugin-unit-mocha": "^5.0.0",
"@vue/cli-service": "^4.0.0",
"@vue/cli-test-utils": "^5.0.5",
"@vue/eslint-config-typescript": "^11.0.2",
"@vuepress/plugin-google-analytics": "^1.8.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"electron": "^13.1.4",
"electron-devtools-installer": "^3.1.0",
"eslint": "^7.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^26.0.0",
"lnk": "^1.1.0",
"rimraf": "^3.0.0",
"spectron": "^15.0.0",
"terminal-tasks": "^0.0.5",
"typescript": "^4.7.2",
"vue": "^2.7.0",
"vue-template-compiler": "^2.7.0",
"vuepress": "^1.5.1"
}
}