forked from jishi/node-sonos-http-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.08 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
38
39
40
41
{
"name": "sonos-http-api",
"version": "1.7.0",
"description": "A simple node app for controlling a Sonos system with basic HTTP requests",
"scripts": {
"start": "node server.js",
"lint": "eslint lib",
"postinstall": "node scripts/patch-sonos-discovery.js"
},
"author": "Jimmy Shimizu <jimmy@shimizu.se>",
"repository": {
"type": "git",
"url": "https://github.com/jishi/node-sonos-http-api.git"
},
"dependencies": {
"@aws-sdk/client-polly": "^3.1022.0",
"basic-auth": "~1.1.0",
"blowfish-node": "^1.1.4",
"blowfish-node": "^1.1.4",
"elevenlabs-node": "2.0.1",
"fuse.js": "^6.4.1",
"got": "^11.8.6",
"html-entities": "^1.2.1",
"json5": "^2.2.3",
"mime": "^1.4.1",
"music-metadata": "^7.14.0",
"serve-static": "^1.15.0",
"sonos-discovery": "^1.7.3",
"wav-file-info": "0.0.8"
},
"engines": {
"node": ">=4 <23"
},
"main": "lib/sonos-http-api.js",
"license": "MIT",
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.32.0"
}
}