-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.43 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
71
72
73
74
75
76
77
78
79
80
{
"main": "dist/index.js",
"keywords": [],
"license": "LGPL-3.0-only",
"type": "module",
"dependencies": {
"@sinclair/typebox": "^0.34.47",
"@stoprocent/noble": "^2.3.17",
"@timesplinter/pimple": "^2.1.1",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"buttplug": "^3.2.2",
"class-transformer": "^0.5.1",
"cors": "^2.8.5",
"dotenv": "^17.2.0",
"express": "^5.2.1",
"isolated-vm": "^6.0.2",
"modern-errors": "^7.1.4",
"node-os-utils": "^2.0.3",
"on-change": "^4.0.1",
"pino": "^10.3.1",
"read-last-lines": "^1.8.0",
"reflect-metadata": "^0.1.13",
"say": "^0.16.0",
"sequential-task-queue": "^1.2.1",
"serialport": "^13.0.0",
"socket.io": "^4.8.3",
"speaker": "https://github.com/SlvCtrlPlus/node-speaker/releases/download/v0.1.0/speaker-v0.1.0.tgz",
"sucrase": "^3.35.1",
"type-detect": "^4.1.0",
"unique-names-generator": "^4.7.1",
"usb": "^3.0.0",
"uuid": "^14.0.0"
},
"devDependencies": {
"@babel/core": "^7.22.8",
"@babel/node": "^7.22.6",
"@babel/plugin-proposal-decorators": "^7.22.7",
"@babel/preset-env": "^7.14.4",
"@babel/preset-typescript": "^7.22.5",
"@eslint/js": "^10.0.1",
"@serialport/binding-mock": "^10.2.2",
"@types/cors": "^2.8.10",
"@types/express": "^5.0.6",
"@types/node": "^24.1.0",
"@types/supertest": "^7.2.0",
"@types/type-detect": "^4.0.3",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^4.0.16",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^62.8.0",
"eslint-plugin-prefer-arrow-functions": "^3.9.1",
"globals": "^17.0.0",
"jiti": "^2.6.1",
"nodemon": "^3.0.2",
"pino-pretty": "^13.1.3",
"socket.io-client": "^4.8.3",
"supertest": "^7.2.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1",
"vitest": "^4.0.16",
"vitest-mock-extended": "^3.1.0",
"ws": "^8.21.0"
},
"engines": {
"node": ">=24.0.0 <25.0.0"
},
"scripts": {
"compile": "tsc && node --enable-source-maps --trace-warnings dist/index.js | pino-pretty",
"dev": "nodemon",
"test": "vitest run",
"test:unit": "vitest run --project unit",
"test:integration": "vitest run --project integration",
"test:coverage": "vitest run --project unit --coverage",
"typecheck": "tsc --noEmit && tsc --noEmit -p tests/tsconfig.json",
"lint": "eslint -c eslint.config.ts .",
"build": "tsc"
}
}