-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.64 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.64 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
{
"name": "stagelinq",
"version": "3.0.4",
"description": "TypeScript library to connect to Denon StageLinq devices",
"homepage": "https://github.com/chrisle/StageLinq",
"repository": {
"type": "git",
"url": "https://github.com/chrisle/StageLinq.git"
},
"keywords": [
"denon",
"stagelinq",
"dj",
"prime",
"engine",
"sc6000",
"sc5000",
"prime4"
],
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"start": "node dist/cli/index.js",
"build": "tsc --build tsconfig.json",
"watch": "tsc --build tsconfig.json -w",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build && npm test",
"release": "node .github/release.js",
"release:patch": "node .github/release.js --patch",
"release:major": "node .github/release.js --major"
},
"author": "Chris Le (TRIODE)",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"better-sqlite3": "^12.5.0",
"console-stamp": "^3.0.3",
"file-type": "^16.5.3",
"ip": "^1.1.5",
"metadata-connect": "file:../metadata-connect",
"minimist": "^1.2.5",
"promise-socket": "^7.0.0"
},
"devDependencies": {
"@types/assert": "^1.5.5",
"@types/better-sqlite3": "^7.6.13",
"@types/ip": "^1.1.0",
"@types/minimist": "^1.2.2",
"@types/node": "^22.15.29",
"@vitest/coverage-v8": "^4.0.16",
"prettier": "^3.5.3",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
},
"overrides": {
"rollup": ">=4.59.0"
}
}