-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 865 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 865 Bytes
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
{
"name": "StremioPlayGUI",
"description": "Play Stremio in Roku GUI.",
"version": "0.0.1",
"author": {
"name": "Byron H.",
"email": "bh@silencesoft.pw",
"url": "https://silencesoft.pw"
},
"private": true,
"scripts": {
"start": "node_modules/.bin/babel-node index.js",
"build": "node_modules/.bin/babel index.js -d bin/",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"dependencies": {
"proton-native": "latest"
},
"devDependencies": {
"electron-builder": "latest",
"babel-cli": "latest",
"babel-preset-env": "latest",
"babel-preset-stage-0": "latest",
"babel-preset-react": "latest"
},
"build": {
"appId": "pw.silencesoft",
"protonNodeVersion": "current",
"mac": {
"category": "pw.silencesoft.stremioapp",
"identity": "silencesoft"
}
}
}