-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.43 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.43 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
{
"name": "myfeeddeck-electron",
"version": "1.0.0",
"description": "A professional RSS feed reader built with Electron",
"main": "src/main/main.js",
"scripts": {
"start": "electron .",
"dev": "electron . --dev",
"build": "cross-env CSC_IDENTITY_AUTO_DISCOVERY=false electron-builder",
"dist": "npm run build",
"clean": "if exist dist rmdir /s /q dist && if exist node_modules rmdir /s /q node_modules",
"rebuild": "npm run clean && npm install"
},
"keywords": [
"rss",
"feed",
"reader",
"electron",
"desktop"
],
"author": "Markus Begerow",
"license": "MIT",
"devDependencies": {
"cross-env": "^10.1.0",
"electron": "^38.3.0",
"electron-builder": "^26.0.12"
},
"dependencies": {
"axios": "^1.6.0",
"feedparser": "^2.2.10",
"jsdom": "^23.0.0",
"node-notifier": "^10.0.1"
},
"build": {
"appId": "com.markusbegerow.myfeeddeck",
"productName": "MyFeedDeck",
"directories": {
"output": "dist"
},
"files": [
"src/**/*",
"data/**/*",
"assets/**/*",
"package.json"
],
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"win": {
"target": "nsis",
"icon": "assets/icons/icon.ico"
},
"mac": {
"target": "dmg",
"icon": "assets/icons/icon.icns"
},
"linux": {
"target": "AppImage",
"icon": "assets/icons/icon.png"
}
}
}