-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.27 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.27 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
{
"name": "supported",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"denon-heos": "^2.0.0",
"pino": "^9.6.0",
"ramda": "^0.29.0",
"sonos": "^1.14.1"
},
"scripts": {
"start": "node dist/index.js",
"dev": "npm run clean && npm run lint && npm run build && node dist/index.js",
"clean": "rimraf dist/",
"build": "tsc -p tsconfig.build.json",
"lint": "eslint . --ext .ts",
"pretest": "npm run lint",
"test": "jest"
},
"engines": {
"node": ">=22.14.0"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^22.13.10",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.5.0",
"eslint-plugin-prettier": "^5.1.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}