-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.39 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
{
"name": "zigbee-on-host",
"version": "0.1.0",
"description": "ZigBee stack designed to run on a host and communicate with a radio co-processor (RCP)",
"engines": {
"node": ">=20.17.0"
},
"files": ["./dist"],
"types": "./dist/drivers/ot-rcp-driver.d.ts",
"main": "./dist/drivers/ot-rcp-driver.js",
"scripts": {
"build": "tsc",
"build:prod": "tsc --project tsconfig.prod.json",
"test": "vitest run --config ./test/vitest.config.mts",
"test:cov": "vitest run --config ./test/vitest.config.mts --coverage",
"bench": "vitest bench --run --config ./test/vitest.config.mts",
"check": "npx @biomejs/biome check --write .",
"clean": "rm -rf dist *.tsbuildinfo",
"dev:cli": "node dist/dev/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nerivec/zigbee-on-host.git"
},
"keywords": ["zigbee", "host", "stack", "rcp"],
"author": "Nerivec",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Nerivec/zigbee-on-host/issues"
},
"homepage": "https://github.com/Nerivec/zigbee-on-host#readme",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^22.10.7",
"@vitest/coverage-v8": "^3.0.2",
"serialport": "^12.0.0",
"typescript": "^5.7.3",
"vitest": "^3.0.2"
}
}