-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.83 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
{
"name": "rss-reader",
"private": true,
"version": "0.1.0",
"description": "A browser and desktop RSS reader built with React and HeroUI.",
"license": "MIT",
"author": {
"name": "Zijian Zhang",
"email": "zijian-zhang@outlook.com"
},
"type": "module",
"main": "electron/main.cjs",
"scripts": {
"dev": "vite --host 0.0.0.0",
"build": "vite build",
"preview": "vite preview --host 0.0.0.0",
"proxy": "node server/node-proxy.js",
"proxy:dev": "npx wrangler dev",
"proxy:deploy": "npx wrangler deploy",
"electron:dev": "concurrently -k \"vite --host 0.0.0.0\" \"wait-on http://127.0.0.1:5173 && VITE_DEV_SERVER_URL=http://127.0.0.1:5173 electron .\"",
"app:pack": "npm run build && electron-builder --dir",
"app:dist": "npm run build && electron-builder --publish never"
},
"dependencies": {
"@heroui/react": "latest",
"@heroui/styles": "latest",
"lucide-react": "latest",
"react": "latest",
"react-dom": "latest"
},
"devDependencies": {
"@tailwindcss/vite": "latest",
"@vitejs/plugin-react": "latest",
"concurrently": "latest",
"electron": "latest",
"electron-builder": "latest",
"tailwindcss": "latest",
"wait-on": "latest",
"vite": "latest"
},
"build": {
"appId": "com.zijianz.rssreader",
"productName": "RSS Reader",
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"electron/**/*",
"package.json"
],
"mac": {
"category": "public.app-category.news",
"target": [
"dmg",
"zip"
]
},
"win": {
"target": [
"nsis",
"zip"
]
},
"linux": {
"category": "News",
"target": [
"AppImage",
"deb"
]
}
}
}