-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 836 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 836 Bytes
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
{
"name": "node-toypad",
"version": "4.0.0",
"description": "A JavaScript module to control the LEGO Dimensions ToyPad",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc -b",
"clean": "rimraf dist",
"prepare": "npm run build",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:connection": "node tests/toypad-connection-test.js"
},
"author": "Nathan Kellenicki <nathan@kellenicki.com>",
"license": "MIT",
"files": [
"dist",
"data"
],
"dependencies": {
"debug": "^4.4.3",
"node-hid": "^3.2.0"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/node": "^25.0.3",
"@vitest/coverage-v8": "^4.0.16",
"rimraf": "^6.1.2",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
}
}