-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.29 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
{
"name": "worklog-assistant",
"version": "0.4.0",
"description": "WorkLog Assistant - Electron + Vue version",
"main": "electron/main.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"electron": "electron .",
"electron:dev": "concurrently \"npm run dev\" \"wait-on http://localhost:5173 && npm run electron\"",
"electron:build": "npm run build && electron-builder",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore"
},
"dependencies": {
"axios": "^1.6.0",
"marked": "^4.3.0",
"vue": "^3.4.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.0",
"concurrently": "^8.2.0",
"electron": "^28.0.0",
"electron-builder": "^24.9.0",
"eslint": "^8.55.0",
"eslint-plugin-vue": "^9.19.0",
"vite": "^5.0.0",
"wait-on": "^7.2.0"
},
"build": {
"appId": "com.worklog.assistant",
"productName": "WorkLog Assistant",
"directories": {
"output": "dist-electron"
},
"files": [
"dist/**/*",
"electron/**/*",
"package.json"
],
"extraResources": [
{ "from": "build/icon.png", "to": "icon.png" }
],
"win": {
"target": [
"nsis",
"portable"
],
"icon": "build/icon.ico",
"signAndEditExecutable": false
}
}
}