-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
86 lines (86 loc) · 2.17 KB
/
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
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "prolink-connect",
"version": "0.11.0",
"main": "lib/index.js",
"author": "Evan Purkhiser <evanpurkhiser@gmail.com>",
"keywords": [
"prolink-network",
"CDJ",
"pioneer",
"DJ",
"reverse-engineer",
"cdj",
"djm"
],
"license": "MIT",
"scripts": {
"watch": "webpack --watch",
"build": "webpack",
"build-docs": "typedoc --out docs src/index.ts",
"test": "jest",
"lint": "eslint src/**/*.ts tests/**/*.ts",
"preversion": "yarn lint; yarn test",
"prepare": "ts-patch install -s"
},
"files": [
"lib/"
],
"engines": {
"node": ">=20.0.0"
},
"bin": {
"prolink-connect": "./lib/cli.js"
},
"sideEffects": false,
"dependencies": {
"@sentry/node": "^6.4.1",
"@sentry/tracing": "^6.4.1",
"@types/better-sqlite3": "^7.6.12",
"@types/lodash": "^4.17.13",
"@types/node": "22.10.2",
"@types/promise-retry": "^1.1.6",
"@types/promise-timeout": "^1.3.3",
"@types/signale": "^1.4.7",
"async-mutex": "^0.3.0",
"better-sqlite3": "^11.7.0",
"ip-address": "^7.0.1",
"js-xdr": "^1.3.0",
"kaitai-struct": "^0.9.0-SNAPSHOT.1",
"lodash": "^4.17.20",
"promise-readable": "^6.0.0",
"promise-retry": "^2.0.1",
"promise-socket": "^7.0.0",
"promise-timeout": "^1.3.0",
"strict-event-emitter-types": "^2.0.0"
},
"devDependencies": {
"@evanpurkhiser/eslint-config": "^0.25.0",
"@types/jest": "^29.5.14",
"@types/stream-buffers": "^3.0.7",
"@types/webpack": "^5.28.5",
"@types/webpack-node-externals": "^3.0.4",
"eslint": "^9.17.0",
"jest": "^29.7.0",
"jest-each": "^29.2.1",
"kaitai-struct-loader": "^0.9.0",
"loader-utils": "^2.0.0",
"prettier": "^3.4.2",
"signale": "^1.4.0",
"stream-buffers": "^3.0.3",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"ts-patch": "^3.3.0",
"typedoc": "^0.27.4",
"typedoc-plugin-missing-exports": "^3.1.0",
"typescript": "^5.7.2",
"typescript-transform-paths": "^3.5.2",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
},
"volta": {
"node": "22.11.0",
"yarn": "1.22.22"
}
}