-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 939 Bytes
/
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
{
"name": "pipewire-orchestrator",
"version": "1.0.0",
"main": "dist/index.js",
"author": "Jayden Chan <[email protected]>",
"license": "GPL-3.0-only",
"private": false,
"scripts": {
"typegen:config": "typescript-json-schema --aliasRefs --topRef --noExtraProps --required --strictNullChecks tsconfig.json Config > src/config-schema.json",
"typegen": "yarn typegen:config",
"bundle": "esbuild src/index.ts --platform=node --bundle --target=node16 --minify --outfile=bundle.js",
"build": "tsc && yarn bundle && cat shebang.txt bundle.js > pw-orchestrator && chmod +x pw-orchestrator && rm bundle.js",
"install": "yarn typegen && yarn build && cp pw-orchestrator ~/.local/bin"
},
"devDependencies": {
"@types/node": "^18.15.13",
"esbuild": "^0.14.53",
"typescript": "^5.0.4",
"typescript-json-schema": "^0.54.0"
},
"dependencies": {
"ajv": "^8.11.0",
"yaml": "^2.1.1"
}
}