-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
122 lines (122 loc) · 3.48 KB
/
package.json
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "Dinosaur.Rss",
"version": "1.10.1",
"description": "Dinosaur Rss 🦕",
"main": "index.js",
"scripts": {
"start": "electron .",
"build": "rollup -c",
"autobuild": "rollup -c -w",
"dev:win": "concurrently \"yarn run autobuild\" \"set ELECTRON_RELOAD=yes && electron .\"",
"dev:mac": "concurrently \"yarn run autobuild\" \"ELECTRON_RELOAD=yes electron .\"",
"pack": "electron-builder --dir",
"dist:win": "rollup -c; electron-builder --win --x64",
"dist:mac:x64": "rollup -c; electron-builder --mac --x64",
"dist:mac:arm64": "rollup -c; electron-builder --mac --arm64",
"dist:linux:x64": "rollup -c; electron-builder --linux --x64",
"dist:linux:arm64": "rollup -c; electron-builder --linux --arm64"
},
"repository": "https://github.com/richshaw2015/dino-rss-electron",
"keywords": [
"Dinosaur",
"RSS",
"reader",
"news"
],
"author": "Richshaw <[email protected]>",
"license": "MIT",
"build": {
"publish": {
"provider": "github",
"owner": "richshaw2015",
"repo": "dino-rss-electron"
},
"appId": "org.dinorss",
"productName": "Dinosaur Rss",
"artifactName": "${productName}.${version}.${arch}.${ext}",
"files": [
"!public/*.map",
"!public/podplayer/**/report.html",
"!rollup.config.js",
"!.vscode/*",
"!build/*",
"!src/**/*",
"!.storybook/*",
"!node_modules/**/*.md",
"!node_modules/**/LICENSE",
"!node_modules/**/mousetrap.min.js",
"!node_modules/**/*.js.map"
],
"detectUpdateChannel": false,
"win": {
"target": "nsis",
"icon": "build/logo.png"
},
"mac": {
"icon": "build/macOS.icns",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.inherit.plist",
"type": "distribution",
"category": "public.app-category.news",
"target": [
"dmg"
],
"extendInfo": {}
},
"linux": {
"icon": "build/macOS.icns",
"category": "Network",
"target": [
"AppImage"
]
},
"mas": {
"icon": "build/macOS.icns",
"hardenedRuntime": false,
"entitlements": "build/entitlements.mas.plist",
"entitlementsInherit": "build/entitlements.mas.inherit.plist",
"provisioningProfile": "build/macOS.provisionprofile",
"type": "distribution",
"category": "public.app-category.news"
},
"nsis": {
"oneClick": false,
"perMachine": true,
"deleteAppDataOnUninstall": true,
"allowToChangeInstallationDirectory": true
},
"dmg": {}
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@podlove/web-player": "^5.2.3",
"@rollup/plugin-commonjs": "^12.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"@rollup/plugin-replace": "^2.4.2",
"autolinker": "^3.14.3",
"concurrently": "^5.3.0",
"electron": "20.3.12",
"electron-builder": "23.3.3",
"electron-devtools-installer": "^3.2.0",
"electron-reload": "^1.5.0",
"fsevents": "^2.3.2",
"highlight.js": "^10.3.1",
"materialize-css": "^1.0.0",
"prismjs": "^1.22.0",
"qrcodejs": "^1.0.0",
"rollup": "^2.51.2",
"rollup-plugin-svelte": "^6.1.1",
"rollup-plugin-terser": "^5.1.2",
"svelte": "^3.49.0",
"svelte-loader": "^2.13.6",
"telnet-client": "^1.4.9"
},
"dependencies": {
"@electron/remote": "^2.0.1",
"get-folder-size": "^2.0.1",
"md5": "^2.3.0",
"mousetrap": "^1.6.5",
"uuid": "^8.3.2"
}
}