-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.85 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
90
91
92
93
94
{
"name": "@matthijsburgh/vue-cli-plugin-electron-builder",
"version": "3.0.2",
"description": "Easily Build Your Vue.js App For Desktop With Electron",
"main": "index.js",
"types": "index.d.ts",
"homepage": "https://MatthijsBurgh.github.io/vue-cli-plugin-electron-builder/",
"funding": "https://github.com/sponsors/MatthijsBurgh",
"scripts": {
"test:ci": "yarn run test:jest --runInBand --coverage && yarn run test:playwright",
"test:jest": "jest",
"test:playwright": "playwright test",
"test": "yarn run test:jest && yarn run test:playwright",
"pretest:ci": "yarn run pretest",
"pretest": "rimraf --glob __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/MatthijsBurgh/vue-cli-plugin-electron-builder.git",
"author": [
{
"name": "Matthijs van der Burgh",
"email": "[email protected]"
}
],
"license": "MIT",
"private": false,
"dependencies": {
"@playwright/test": "^1.41.0",
"@vue/cli-shared-utils": "^5.0.5",
"chokidar": "^3.0.2",
"cross-env": "^7.0.3",
"electron-builder": "^24.4.0",
"execa": "^5.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"fs-extra": "^11.1.1",
"lodash.merge": "^4.6.1",
"pumpify": "^2.0.1",
"split2": "^4.1.0",
"terser-webpack-plugin": "^4.2.3",
"through2-filter": "^4.0.0",
"through2-map": "^4.0.0",
"unzip-crx": "^0.2.0",
"webpack": "^4.33.0",
"webpack-chain": "^6.0.0",
"webpack-merge": "^5.10.0",
"yargs": "^17.5.1"
},
"devDependencies": {
"@babel/core": "^7.11.0",
"@babel/eslint-parser": "^7.19.1",
"@electron/remote": "^2.0.1",
"@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-service": "^4.0.0",
"@vue/cli-test-utils": "^5.0.5",
"@vue/eslint-config-typescript": "^12.0.0",
"@vuepress/plugin-google-analytics": "^1.8.0",
"ci-info": "^4.0.0",
"electron": "^32.0.0",
"electron-devtools-installer": "^3.1.0",
"electron-playwright-helpers": "^1.5.5",
"eslint": "^8.56.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^9.0.0",
"jest": "^29.5.0",
"lnk": "^1.1.0",
"playwright-core": "^1.41.0",
"rimraf": "^5.0.0",
"terminal-tasks": "^0.0.5",
"typescript": "^5.0.2",
"vue": "^2.7.14",
"vue-template-compiler": "^2.7.14",
"vuepress": "^1.5.1"
}
}