-
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) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.78 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
{
"desktopName": "opennotes.desktop",
"name": "opennotes",
"version": "0.0.0",
"author": "rajsriv <raj2005sriv@gmail.com>",
"homepage": "https://github.com/rajsriv/OpenNotes",
"private": true,
"type": "module",
"main": "electron-main.cjs",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"electron": "wait-on tcp:5173 && VITE_DEV_SERVER_URL=http://localhost:5173 electron .",
"electron:dev": "concurrently -k \"npm run dev\" \"npm run electron\"",
"package": "npm run build && electron-builder -l"
},
"devDependencies": {
"concurrently": "^10.0.3",
"electron": "^42.4.0",
"electron-builder": "^26.15.2",
"vite": "^8.0.12",
"wait-on": "^9.0.10"
},
"dependencies": {
"dbus-next": "^0.10.2",
"marked": "^18.0.5"
},
"build": {
"appId": "com.raj.opennotes",
"productName": "OpenNotes",
"directories": {
"output": "release"
},
"win": {
"icon": "icon.png",
"target": [
"nsis",
"portable"
]
},
"mac": {
"icon": "icon.png",
"target": [
{
"target": "zip",
"arch": [
"x64",
"arm64"
]
}
],
"category": "public.app-category.productivity"
},
"linux": {
"executableName": "opennotes",
"icon": "build/icons",
"target": [
"AppImage",
"deb",
"pacman",
"rpm"
],
"category": "Office",
"syncDesktopName": true,
"desktop": {
"entry": {
"StartupWMClass": "opennotes",
"Icon": "/usr/share/icons/hicolor/512x512/apps/opennotes.png"
}
}
},
"files": [
"dist/**/*",
"electron-main.cjs",
"preload.cjs",
"icon.png"
]
}
}