-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.86 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.86 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
{
"name": "soundcloud-rpc",
"version": "0.1.7",
"description": "🎵 A SoundCloud Client with Discord Rich Presence, Dark Mode, Last.fm and AdBlock support",
"author": {
"name": "Richard Habitzreuter",
"email": "richardhabitzreuter@icloud.com"
},
"license": "MIT",
"scripts": {
"lint": "eslint -c .eslintrc --ext .ts ./src",
"copy-header": "cpx \"src/header/**/*\" tsc/header",
"dev": "tsc && npm run copy-header && electron ./tsc/main.js --dev",
"build": "tsc && npm run copy-header && electron-builder --dir",
"build-win": "tsc && npm run copy-header && electron-builder -w nsis",
"build-win-ptb": "tsc && electron-builder -w portable",
"build-mac": "tsc && electron-builder -m dmg",
"build-linux-deb": "tsc && electron-builder -l deb",
"build-linux-appimage": "tsc && electron-builder -l appimage"
},
"main": "./tsc/main.js",
"repository": "https://github.com/richardhbtz/soundcloud-rpc",
"publish": {
"provider": "github",
"releaseType": "release"
},
"build": {
"appId": "com.richardhbtz.soundcloud-rpc",
"productName": "SoundCloud",
"asar": true,
"extraResources": [
{
"from": "assets/icons",
"to": "assets/icons"
}
],
"files": [
"tsc/**/*"
],
"directories": {
"output": "build"
},
"mac": {
"target": "dmg",
"icon": "assets/icons/soundcloud-mac.icns",
"artifactName": "soundcloud-${version}-mac.${ext}"
},
"win": {
"target": "nsis",
"icon": "assets/icons/soundcloud-win.ico",
"artifactName": "soundcloud-${version}-installer-win.${ext}"
},
"linux": {
"target": "AppImage",
"artifactName": "soundcloud-${version}-installer-linux.${ext}"
}
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.37.0",
"@types/discord-rpc": "^4.0.6",
"@types/node": "^24.2.1",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"electron": "^37.0.0",
"electron-builder": "^26.0.12",
"eslint": "^9.33.0",
"prettier": "3.6.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.46.0"
},
"dependencies": {
"@ghostery/adblocker-electron": "^2.11.3",
"@xhayper/discord-rpc": "^1.3.0",
"cpx": "^1.5.0",
"cross-fetch": "^4.0.0",
"discord-api-types": "^0.38.18",
"discord-rpc": "^4.0.1",
"electron-prompt": "^1.7.0",
"electron-store": "^8.1.0",
"electron-updater": "^6.3.4",
"electron-window-state": "^5.0.3"
}
}