-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.28 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.28 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
{
"name": "call-notes-logger",
"private": true,
"version": "1.0.0",
"description": "A simple call notes logger application",
"author": "User",
"type": "module",
"main": "electron/main.js",
"scripts": {
"dev": "vite",
"electron": "electron .",
"build": "vite build",
"dist": "vite build && electron-builder",
"lint": "eslint .",
"preview": "vite preview"
},
"build": {
"appId": "com.callnotes.logger",
"productName": "Call Notes Logger",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"electron/**/*",
"package.json"
],
"win": {
"target": "nsis"
},
"mac": {
"target": "dmg"
},
"linux": {
"target": "AppImage"
}
"publish": []
},
"dependencies": {
"electron-log": "^5.4.3",
"electron-store": "^11.0.2",
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"electron": "^40.0.0",
"electron-builder": "^26.4.0",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"vite": "^7.2.4"
}
}