-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
78 lines (78 loc) · 3.05 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
{
"name": "headset",
"productName": "Headset",
"version": "4.2.1",
"description": "Discover and collect music on YouTube",
"license": "MIT",
"author": "Daniel Ravina <[email protected]>",
"homepage": "https://headsetapp.co",
"bugs": "https://github.com/headsetapp/headset-electron/issues",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/headsetapp/headset-electron"
},
"scripts": {
"prepare": "husky",
"postinstall": "electron-rebuild -o electron-media-service",
"headset": "electron .",
"dev:headset": "cross-env NODE_ENV=development nf start",
"lint": "eslint .",
"version": "npm run bumps && git add .",
"bumps": "npm run bump_choco && npm run bump_appstream",
"bump_choco": "cross-env VERSION=$npm_package_version bash bin/choco_version_bump.sh",
"bump_appstream": "cross-env VERSION=$npm_package_version node bin/appstream_version_bump.js",
"pack:linux": "bash bin/packager/linux.sh",
"pack:darwin": "bash bin/packager/darwin.sh",
"pack:windows": "cross-env OS=win32 node bin/packager/packager.js",
"dist:debian": "node bin/installer/debian.js",
"dist:redhat": "node bin/installer/redhat.js",
"dist:linux": "npm run dist:debian && npm run dist:redhat",
"dist:darwin": "VERSION=$npm_package_version bash bin/installer/darwin.sh",
"dist:windows": "node bin/installer/windows.js",
"build:linux": "npm run pack:linux && npm run dist:linux",
"build:darwin": "npm run pack:darwin && npm run dist:darwin",
"build:windows": "npm run pack:windows && npm run dist:windows",
"sign:redhat": "VERSION=$npm_package_version bash bin/installer/redhat_sign.sh",
"choco": "pwsh ./bin/build_choco.ps1 -version %npm_package_version%",
"repo": "VERSION=$npm_package_version bash bin/linux_repo.sh",
"test:sign": "VERSION=$npm_package_version bash bin/check_macOS_signatures.sh",
"test:app": "ava --timeout=20s test/app.test.js",
"test:linux": "ava --timeout=1m test/linux/installers.test.js"
},
"dependencies": {
"debug": "^4.3.4",
"discord-rpc": "^4.0.1",
"electron-log": "^5.1.2",
"electron-media-service": "github:headsetapp/electron-media-service",
"electron-squirrel-startup": "^1.0.0",
"electron-window-state": "^5.0.3",
"jimp": "^0.22.12"
},
"devDependencies": {
"ava": "^6.1.2",
"cross-env": "^7.0.3",
"electron": "^14.2.9",
"electron-installer-windows": "^3.0.0",
"electron-packager": "^17.1.2",
"electron-packager-languages": "^0.5.0",
"electron-rebuild": "^3.2.7",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-ava": "^14.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-promise": "^6.1.1",
"foreman": "^3.0.1",
"http-server": "^14.1.1",
"husky": "^9.0.11",
"playwright": "^1.42.1",
"xml2js": "^0.6.2"
},
"optionalDependencies": {
"create-dmg": "^7.0.0",
"dbus-next": "^0.10.2",
"electron-installer-debian": "^3.2.0",
"electron-installer-redhat": "^3.4.0",
"mpris-service": "^2.1.2"
}
}