-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.82 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.82 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
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
{
"name": "electron-vvt",
"description": "Electron、Vue、Vite、TypeScript 框架",
"version": "0.0.3-dev.1",
"type": "module",
"author": {
"name": "徐晓伟",
"email": "xuxiaowei@xuxiaowei.com.cn",
"url": "https://xuxiaowei.com.cn"
},
"license": "Apache-2.0",
"homepage": "https://github.com/xuxiaowei-com-cn/electron-vvt#readme",
"main": "main.js",
"scripts": {
"pre:npm": "npm install --registry https://registry.npmmirror.com || npm install --registry https://registry.npmjs.org",
"pre:yarn": "yarn install --registry https://registry.npmmirror.com || yarn install --registry https://registry.npmjs.org",
"pre:pnpm": "pnpm install --registry https://registry.npmmirror.com || pnpm install --registry https://registry.npmjs.org",
"dev": "vite",
"build-only": "vite build",
"build": "run-p type-check \"build-only {@}\" -- && electron-builder",
"build:publish": "npm run build -- --publish always",
"preview": "vite preview",
"test:unit": "vitest",
"test:e2e": "playwright test",
"type-check": "vue-tsc --build",
"lint:oxlint": "oxlint . --fix -D correctness --ignore-path .gitignore",
"lint:eslint": "eslint . --fix --cache",
"lint": "run-s lint:*",
"format": "prettier --write e2e/ src/ .*.json *.json *.js *.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/xuxiaowei-com-cn/electron-vvt.git"
},
"bugs": {
"email": "xuxiaowei@xuxiaowei.com.cn",
"url": "https://github.com/xuxiaowei-com-cn/electron-vvt/issues"
},
"keywords": [
"electron",
"electron-builder",
"electron-log",
"electron-store",
"electron-updater",
"pinia",
"playwright",
"typescript",
"vite",
"vitest",
"vue",
"vue-router"
],
"dependencies": {
"electron-log": "5.4.3",
"electron-store": "11.0.2",
"electron-updater": "6.6.2"
},
"devDependencies": {
"@playwright/test": "1.57.0",
"@tsconfig/node22": "22.0.5",
"@types/fs-extra": "11.0.4",
"@types/jsdom": "27.0.0",
"@types/node": "25.0.3",
"@vitejs/plugin-vue": "6.0.3",
"@vitest/eslint-plugin": "1.6.6",
"@vue/eslint-config-prettier": "10.2.0",
"@vue/eslint-config-typescript": "14.6.0",
"@vue/test-utils": "2.4.6",
"@vue/tsconfig": "0.8.1",
"electron": "39.2.7",
"electron-builder": "26.0.12",
"eslint": "9.39.2",
"eslint-plugin-oxlint": "1.35.0",
"eslint-plugin-playwright": "2.4.0",
"eslint-plugin-vue": "10.6.2",
"jiti": "2.6.1",
"jsdom": "27.4.0",
"npm-run-all2": "8.0.4",
"oxlint": "1.35.0",
"pinia": "3.0.4",
"prettier": "3.7.4",
"typescript": "5.9.3",
"vite": "7.3.1",
"vite-plugin-vue-devtools": "8.0.5",
"vitest": "4.0.16",
"vue": "3.5.26",
"vue-router": "4.6.4",
"vue-tsc": "3.2.1"
},
"engines": {
"node": ">=20.19.0"
}
}