-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
111 lines (111 loc) · 3.14 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
{
"name": "soundsync",
"version": "0.4.16-dev",
"description": "Plug virtual cables between any audio source and any speakers in your home",
"author": "Guillaume Besson <guillaume@besson.co>",
"homepage": "https://soundsync.app",
"main": "app/entrypoint.js",
"bin": "app/entrypoint.js",
"scripts": {
"test": "echo Not implemented yet",
"build": "./scripts/build.sh",
"build:ts": "tsc -b",
"build:watch": "tsc -w",
"start": "node -r source-map-support/register --experimental-wasm-threads app/index.js",
"start:inspect": "node --inspect -r source-map-support/register --experimental-wasm-threads app/index.js",
"start:electron": "electron app/entrypoint.js",
"pack": "electron-builder",
"postinstall": "cd app && (yarn || npm install)",
"lint": "eslint --ignore-pattern node_modules --ext .ts src",
"lint:fix": "eslint --fix --ext .ts src",
"deploy": "node app/scripts/bump_version.js",
"gitmoji-changelog": "gitmoji-changelog"
},
"license": "BUSL-1.1",
"devDependencies": {
"@types/auto-launch": "^5.0.1",
"@types/bonjour": "^3.5.5",
"@types/debug": "^4.1.5",
"@types/emscripten": "^1.39.3",
"@types/koa": "^2.11.0",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-router": "^7.0.42",
"@types/lodash": "^4.14.149",
"@types/minipass": "^2.2.0",
"@types/ndarray": "^1.0.8",
"@types/node": "^12.0.0",
"@types/superagent": "^4.1.4",
"@types/webrtc": "^0.0.25",
"@types/yargs": "^13.0.4",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"electron": "15.1.0",
"electron-builder": "^22.11.11",
"electron-notarize": "^1.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"file-loader": "^6.1.0",
"gitmoji-changelog": "^2.1.0",
"source-map-support": "^0.5.16",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"build": {
"appId": "com.geekuillaume.soundsync",
"productName": "Soundsync",
"artifactName": "soundsync-${arch}-${version}.${ext}",
"asar": false,
"directories": {
"output": "bin"
},
"afterSign": "./scripts/notarize.js",
"afterPack": "./scripts/electronpack-hook.js",
"extraResources": [
"webui/dist",
"res/**/*"
],
"mac": {
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist"
},
"linux": {
"target": [
"deb",
"pacman"
]
},
"pacman": {
"fpm": [
"--after-install=scripts/package_extra/install.sh"
],
"depends": [
"libnotify",
"libxss",
"nspr",
"nss",
"pulseaudio"
]
},
"deb": {
"fpm": [
"--after-install=scripts/package_extra/install.sh"
],
"depends": [
"gconf2",
"gconf-service",
"libnotify4",
"libappindicator1",
"libxtst6",
"libnss3",
"libasound2",
"libxss1",
"pulseaudio",
"libgbm1"
]
}
},
"dependencies": {}
}