-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 845 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 845 Bytes
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
{
"name": "essentials-for-spotify",
"version": "1.2.0.0",
"description": "Effortlessly control your Spotify through your Elgato Stream Deck.",
"author": "https://github.com/ntanis-dev",
"license": "ISC",
"main": "index.js",
"type": "module",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w --watch.onEnd=\"streamdeck restart com.ntanis.essentials-for-spotify\""
},
"devDependencies": {
"@elgato/cli": "^1.7.1",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@tsconfig/node20": "^20.1.9",
"@types/node": "^20.0.0",
"rollup": "^4.57.1",
"tslib": "^2.6.2",
"typescript": "^5.9.3"
},
"dependencies": {
"@elgato/streamdeck": "^2.0.1",
"ws": "^8.19.0"
}
}