-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.14 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.14 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
{
"name": "keyspotic",
"version": "1.0.0",
"description": "Background service to control Spotify via global hotkeys",
"main": "src/index.ts",
"type": "module",
"scripts": {
"dev": "bun run --watch src/index.ts",
"start": "bun run src/index.ts",
"build:js": "bun build src/index.ts --outdir dist --target bun && cp hotkeys.json dist/hotkeys.json",
"build:linux": "bun build --compile --target=bun-linux-x64-baseline src/index.ts --outfile dist/linux/KeySpotic-linux",
"build:win": "bun build --compile --target=bun-windows-x64 src/index.ts --outfile dist/win/KeySpotic-win.exe",
"postbuild": "bun run scripts/postbuild.ts",
"build": "bun run build:linux && bun run build:win && bun run postbuild"
},
"keywords": [
"spotify",
"hotkeys",
"listener",
"bun",
"typescript"
],
"author": "Samuel Beato",
"license": "MIT",
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@types/spotify-web-api-node": "^5.0.11",
"hono": "^4.9.10",
"node-global-key-listener": "^0.3.0",
"spotify-web-api-node": "^5.0.2"
}
}