-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.22 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
{
"name": "cmd-messenger",
"version": "0.1.0",
"description": "TypeScript host-side CmdMessenger library for Arduino command messaging",
"type": "module",
"private": true,
"license": "MIT",
"engines": {
"node": ">=22"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./transport": {
"types": "./dist/transport/index.d.ts",
"import": "./dist/transport/index.js"
},
"./transport/network": {
"types": "./dist/transport/network/index.d.ts",
"import": "./dist/transport/network/index.js"
},
"./transport/serial": {
"types": "./dist/transport/serial/index.d.ts",
"import": "./dist/transport/serial/index.js"
}
},
"sideEffects": false,
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "vitest run",
"test:hardware": "vitest run --config vitest.hardware.config.ts",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"peerDependencies": {
"serialport": ">=12.0.0"
},
"peerDependenciesMeta": {
"serialport": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^22.15.30",
"serialport": "^13.0.0",
"typescript": "^5.8.3",
"vitest": "^4.1.8"
}
}