-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.77 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.77 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
{
"name": "frodigy",
"version": "1.4.30",
"description": "Frodigy - A Premium Offline Desktop Productivity & Time Management Application",
"main": "src/main/main.js",
"scripts": {
"start": "powershell -Command \"Remove-Item Env:\\ELECTRON_RUN_AS_NODE -ErrorAction SilentlyContinue; & .\\node_modules\\.bin\\electron .\"",
"dev": "npm run start",
"check": "node -e \"console.log('No checks configured yet')\"",
"rebuild:native": "electron-rebuild -f -w better-sqlite3",
"postinstall": "npm run rebuild:native",
"dist": "electron-builder --win --linux",
"dist:win": "electron-builder --win",
"dist:linux": "electron-builder --linux"
},
"keywords": ["productivity", "offline", "journal", "timer", "calendar"],
"author": "Saksham Sharma (TheIdealDev) <sharma@saksham.info.np>",
"license": "GPL-3.0",
"type": "commonjs",
"build": {
"appId": "com.theidealdev.frodigy",
"productName": "Frodigy",
"directories": {
"output": "dist"
},
"win": {
"target": [
"nsis",
"portable"
],
"icon": "build/icons/icon.ico"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"icon": "build/icons/512x512.png",
"category": "Office"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"artifactName": "${productName}-Setup-${version}.${ext}"
},
"portable": {
"artifactName": "${productName}-Portable-${version}.${ext}"
}
},
"devDependencies": {
"@electron/rebuild": "^4.0.3",
"electron": "^35.7.5",
"electron-builder": "^26.8.1"
},
"dependencies": {
"better-sqlite3": "^12.8.0",
"marked": "^17.0.5"
}
}