-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·90 lines (90 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·90 lines (90 loc) · 2.27 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "stremio-enhanced",
"version": "1.2.0",
"description": "Electron-based Stremio client with plugins and themes support.",
"main": "./dist/main.js",
"scripts": {
"dist": "tsc && node ./copyComponents.js",
"watch": "tsc -w",
"lint": "eslint -c .eslintrc --ext .ts ./src",
"dev": "node -e \"console.clear()\" && npm run dist && npx electron --log-level=3 ./dist/main.js --devtools",
"build": "npm run dist && electron-builder",
"build:linux:x64": "npm run dist && electron-builder --linux --x64",
"build:linux:arm64": "npm run dist && electron-builder --linux --arm64",
"build:mac:x64": "npm run dist && electron-builder --mac --x64",
"build:mac:arm64": "npm run dist && electron-builder --mac --arm64",
"build:win:x64": "npm run dist && electron-builder --win --x64",
"build:win:arm64": "npm run dist && electron-builder --win --arm64",
"build:win": "npm run dist && electron-builder --win"
},
"repository": "https://github.com/REVENGE977/stremio-enhanced.git",
"publish": {
"provider": "github",
"releaseType": "release"
},
"author": "REVENGE",
"license": "MIT",
"devDependencies": {
"@types/unzipper": "^0.10.11",
"electron": "^41.1.0",
"electron-builder": "^26.4.0",
"typescript": "^5.7.2"
},
"dependencies": {
"@xhayper/discord-rpc": "^1.2.1",
"discord-api-types": "^0.37.119",
"marked": "^15.0.7",
"p-limit": "^7.2.0",
"unzipper": "^0.12.3",
"winston": "^3.11.0"
},
"optionalDependencies": {
"dmg-license": "^1.0.11"
},
"files": [
"static/**/*",
"!**/node_modules/*",
"!**/dist/*",
"!**/src/*",
"index.html"
],
"build": {
"appId": "com.revenge977.stremio-enhanced",
"productName": "Stremio Enhanced",
"asar": true,
"icon": "images/icon",
"directories": {
"output": "release-builds"
},
"publish": {
"provider": "github",
"owner": "REVENGE977",
"repo": "stremio-enhanced"
},
"asarUnpack": [
"**/register-scheme/build/Release/*.node",
"**/register-scheme/node-addon-api/src/node-api.target.mk"
],
"win": {
"target": [
{
"target": "nsis"
},
{
"target": "portable"
}
]
},
"mac": {
"target": "dmg",
"icon": "images/icon.icns"
},
"linux": {
"target": "AppImage",
"icon": "images/icon.png"
}
},
"allowScripts": {
"electron@41.1.0": true
}
}