forked from svrooij/node-sonos-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@svrooij/sonos",
"version": "0.0.0-development",
"description": "A node library to control your sonos devices, written in typescript",
"main": "lib/index.js",
"types": "lib/index.d.js",
"scripts": {
"build": "tsc",
"generate": "npm run generate:prepare && npm run generate:files",
"generate:prepare": "npx @svrooij/sonos-docs@1.3.0 combine",
"generate:files": "npx @svrooij/sonos-docs@1.3.0 generate ./.generator/ts/ ./",
"lint": "eslint ./src",
"lint:fix": "eslint ./src/*.ts ./src/**/*.ts --fix",
"prepack": "npm run build",
"serve-docs": "docker-compose -f ./docs/docker-compose.yml up jekyll",
"test": "jest",
"test:lint": "npm run lint",
"test:jest": "jest --forceExit",
"precommit": "npm run lint:fix && npm run test:jest"
},
"repository": {
"type": "git",
"url": "https://github.com/svrooij/node-sonos-ts.git"
},
"keywords": [
"sonos",
"typescript",
"real-time",
"home-automation"
],
"author": "Stephan van Rooij <stephan+sonos@svrooij.io> (https://svrooij.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/svrooij/node-sonos-ts/issues"
},
"homepage": "https://sonos-ts.svrooij.io/",
"devDependencies": {
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.21.0",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.14",
"@types/node": "^18.15.3",
"@types/node-fetch": "^2.6.12",
"@types/ws": "^8.5.14",
"@typescript-eslint/eslint-plugin": "^8.24.1",
"@typescript-eslint/parser": "^8.24.1",
"eslint": "^9.21.0",
"glob": "^11.0.1",
"handlebars": "^4.7.8",
"jest": "^29.7.0",
"nock": "^13.0.11",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"typescript": "^5.4.0"
},
"dependencies": {
"@rgrove/parse-xml": "^4.2.0",
"debug": "4.4.0",
"html-entities": "^2.5.2",
"node-fetch": "^2.7.0",
"typed-emitter": "^2.1.0",
"ws": "^8.18.1"
},
"files": [
"README.md",
"LICENSE",
"lib/**/*.ts",
"lib/**/*.js"
]
}