-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.48 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.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
{
"name": "script-editor-2",
"version": "1.3.0",
"private": true,
"scripts": {
"dev:front": "cross-env NODE_ENV=development webpack serve",
"build:front": "cross-env NODE_ENV=production webpack",
"dev:desktop": "tsc --project tsconfig.native.json --watch",
"build:desktop": "tsc --project tsconfig.native.json",
"dev": "run-p dev:*",
"build": "run-p build:*",
"dist": "run-s build dist-only",
"dist-only": "eop build",
"type-check": "tsc --noEmit --project",
"lint": "eslint . --fix",
"start": "eop start"
},
"dependencies": {
"@zip.js/zip.js": "^2.7.60",
"axios": "^1.10.0",
"crypto-js": "^4.2.0",
"highlight.js": "^11.11.1",
"jszip": "^3.10.1",
"marked": "^15.0.12",
"typescript": "^5.8.3",
"vue": "^3.5.13",
"zhipuai": "^2.0.0"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@types/crypto-js": "^4.2.2",
"@types/node": "^22.14.0",
"copy-webpack-plugin": "^13.0.0",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"electron-builder": "^26.0.12",
"electron-ofp": "^1.0.113",
"eslint": "^9.29.0",
"eslint-plugin-vue": "^10.2.0",
"globals": "^16.2.0",
"html-webpack-plugin": "^5.6.3",
"npm-run-all": "^4.1.5",
"raw-loader": "^4.0.2",
"ts-loader": "^9.5.2",
"type-electron": "^1.0.4",
"typescript-eslint": "^8.34.1",
"url-loader": "^4.1.1",
"vue-eslint-parser": "^10.1.3",
"vue-loader": "^17.4.2",
"vue-style-loader": "^4.1.3",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.1",
"webpackbar": "^7.0.0"
},
"repository": "https://github.com/Rundll86/script-editor-2",
"author": "Rundll86 <2028673870@qq.com>",
"license": "MIT",
"build": {
"appId": "fun.fshrimp.scripteditor",
"productName": "Script Editor",
"copyright": "Copyright © 2025",
"directories": {
"output": "dist/desktop"
},
"files": [
"dist/**/*",
"node_modules/**/*",
"package.json"
],
"win": {
"target": "nsis",
"icon": "public/favicon.ico"
},
"electronDownload": {
"mirror": "https://registry.npmmirror.com/electron/",
"cache": "electron"
}
}
}