-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 936 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
26
27
28
29
30
31
32
33
34
{
"name": "sonos_proxy_node",
"version": "1.1.0",
"description": "A socket client for https://github.com/clearfunction/clearbot Sonos integration",
"author": "David Mohundro <[email protected]>",
"main": "build/app.js",
"license": "MIT",
"scripts": {
"lint": "eslint '**/*.ts'",
"tsc": "tsc",
"dev": "ts-node-dev ./app.ts --respawn --transpileOnly",
"build:prod": "tsc && node ./build/app.js",
"start:prod": "node ./build/app.js"
},
"engines": {
"node": ">=18.x <=20.x"
},
"dependencies": {
"dotenv": "^16.4.5",
"play-sound": "^1.1.5",
"socket.io-client": "^4.7.5",
"ts-node-dev": "^2.0.0"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.11.30",
"@types/play-sound": "^1.1.2",
"eslint": "^9.12.0",
"prettier": "3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.9.0"
}
}