-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.35 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.35 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
{
"name": "flow-sop",
"version": "1.0.0",
"description": "Developer-oriented SOP execution tool",
"main": "electron/main.js",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"electron:dev": "concurrently \"vite\" \"wait-on http://localhost:5173 && electron .\"",
"electron:build": "npm run build && electron-builder",
"build:win": "npm run build && electron-builder --win --x64",
"build:mac": "npm run build && electron-builder --mac",
"build:linux": "npm run build && electron-builder --linux",
"build:all": "npm run build && electron-builder --win --mac --linux",
"dist": "npm run build:win"
},
"dependencies": {
"mermaid": "^10.9.0",
"pinia": "^2.1.7",
"vue": "^3.4.21",
"highlight.js": "^11.9.0"
},
"devDependencies": {
"@types/node": "^20.11.24",
"@vitejs/plugin-vue": "^5.0.4",
"autoprefixer": "^10.4.18",
"concurrently": "^8.2.2",
"electron": "^29.1.4",
"electron-builder": "^24.13.3",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.2",
"vite": "^5.1.5",
"vue-tsc": "^2.0.6",
"wait-on": "^7.2.0"
},
"build": {
"appId": "com.flowsop.app",
"productName": "Flow SOP",
"copyright": "Copyright © 2026",
"directories": {
"output": "dist-electron"
},
"files": [
"dist/**/*",
"electron/**/*",
"node_modules/**/*",
"!node_modules/.cache/**/*",
"!node_modules/**/*.md",
"!node_modules/**/*.ts",
"!node_modules/**/test/**/*"
],
"asar": true,
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"icon": "public/icon.ico",
"requestedExecutionLevel": "asInvoker"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"allowElevation": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Flow SOP",
"installerLanguages": [
"zh_CN",
"en_US"
],
"language": "2052"
},
"mac": {
"target": "dmg",
"icon": "public/icon.icns",
"category": "public.app-category.productivity"
},
"linux": {
"target": "AppImage",
"icon": "public/icon.png",
"category": "Utility"
},
"extraResources": []
}
}