-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.48 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.48 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "pcl-electron",
"version": "0.2.0",
"private": true,
"main": "main.js",
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build",
"format": "prettier --write src/",
"deploy": "vite build && gh-pages -d dist",
"lock": "pnpm install electron",
"dev:electron": "concurrently \"npm run dev\" \"wait-on http://localhost:5173 && electron .\"",
"start": "electron .",
"package": "electron-builder"
},
"build": {
"asar": "false",
"appId": "com.realaf.pclele",
"productName": "PCL.Electron.App",
"copyright": "Copyright © 2025 Realaf Team",
"files": [
"dist/**/*",
"preload.js",
"main.js",
"node_modules/**",
"package.json"
],
"directories": {
"output": "outs/beta"
},
"win": {
"target": "nsis",
"icon": "logo-icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"dependencies": {
"@develar/schema-utils": "^2.6.5",
"@electron/asar": "^4.0.1",
"@electron/fuses": "^2.0.0",
"@electron/notarize": "^3.0.1",
"@isaacs/balanced-match": "^4.0.1",
"@isaacs/brace-expansion": "^5.0.0",
"@isaacs/cliui": "^8.0.2",
"ajv": "^8.17.1",
"ajv-keywords": "^5.1.0",
"animate.css": "^4.1.1",
"ansi-regex": "^6.1.0",
"ansi-styles": "^6.2.1",
"app-builder-lib": "^26.0.12",
"chalk": "^5.5.0",
"ci-info": "^4.3.0",
"cliui": "^9.0.1",
"commander": "^14.0.0",
"cross-spawn": "^7.0.6",
"debug": "^4.4.1",
"electron-packager": "^17.1.2",
"emoji-regex": "^10.4.0",
"escalade": "^3.2.0",
"fast-deep-equal": "^3.1.3",
"fast-uri": "^3.0.6",
"foreground-child": "^3.3.1",
"fs-extra": "^11.3.1",
"get-caller-file": "^2.0.5",
"get-east-asian-width": "^1.3.0",
"glob": "^11.0.3",
"graceful-fs": "^4.2.11",
"is-ci": "^4.1.0",
"isexe": "^3.1.1",
"jackspeak": "^4.1.1",
"json-schema-traverse": "^1.0.0",
"jsonfile": "^6.1.0",
"lazy-val": "^1.0.5",
"lru-cache": "^11.1.0",
"minimatch": "^10.0.3",
"minipass": "^7.1.2",
"ms": "^2.1.3",
"package-json-from-dist": "^1.0.1",
"path-key": "^4.0.0",
"path-scurry": "^2.0.0",
"pnpm": "^10.14.0",
"require-from-string": "^2.0.2",
"semver": "^7.7.2",
"shebang-command": "^2.0.0",
"shebang-regex": "^4.0.0",
"signal-exit": "^4.1.0",
"simple-update-notifier": "^2.0.0",
"string-width": "^7.2.0",
"string-width-cjs": "^5.1.1",
"strip-ansi": "^7.1.0",
"strip-ansi-cjs": "^8.0.0",
"universalify": "^2.0.1",
"vue": "^3.5.18",
"vue-router": "^4.5.1",
"which": "^5.0.0",
"wrap-ansi": "^9.0.0",
"wrap-ansi-cjs": "^8.0.0",
"xml-js": "^1.6.11",
"y18n": "^5.0.8",
"yargs": "^18.0.0",
"yargs-parser": "^22.0.0"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.2",
"@types/node": "^22.17.0",
"@vitejs/plugin-vue": "^5.2.4",
"@vue/language-plugin-pug": "^2.2.12",
"@vue/tsconfig": "^0.7.0",
"electron-builder": "^26.0.12",
"concurrently": "^9.2.0",
"electron": "latest",
"gh-pages": "^6.3.0",
"npm-run-all2": "^7.0.2",
"prettier": "3.5.3",
"pug": "^3.0.3",
"typescript": "~5.8.3",
"vite": "^6.3.5",
"vite-plugin-vue-devtools": "^7.7.7",
"vue-tsc": "^2.2.12",
"wait-on": "^8.0.4"
}
}