forked from kevinfiol/rss-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.07 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.07 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
{
"name": "fukuro",
"version": "1.0.0",
"description": "A somewhat dumb but effective feed reader (RSS, JSON & Twitter)",
"type": "module",
"main": "main.js",
"engines": {
"node": ">=18.x"
},
"scripts": {
"build": "node src/build.js",
"write": "node src/build.js --write",
"cached": "node src/build.js --cached",
"start": "electron .",
"package": "electron-builder",
"flatpak": "electron-builder --linux flatpak"
},
"author": "gavrielsha",
"license": "ISC",
"dependencies": {
"rss-parser": "^3.6.3"
},
"devDependencies": {
"electron": "^29.1.0",
"electron-builder": "^24.13.1"
},
"build": {
"appId": "com.gavrielsha.fukuro",
"productName": "Fukuro",
"directories": {
"output": "dist"
},
"files": [
"output/**/*",
"src/**/*",
"main.js",
"package.json",
"node_modules/**/*"
],
"linux": {
"target": ["flatpak", "AppImage"],
"category": "Network;News",
"icon": "build/icon.png"
},
"flatpak": {
"useWaylandFlags": true
}
}
}