-
Notifications
You must be signed in to change notification settings - Fork 241
/
Copy pathpackage.json
58 lines (58 loc) · 1.53 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
{
"name": "zigbee-ota",
"version": "1.2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Koenkk/zigbee-OTA.git"
},
"engines": {
"node": ">=20.0.0"
},
"type": "module",
"packageManager": "[email protected]",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"clean": "rm -rf dist coverage *.tsbuildinfo",
"start": "node ./dist/index.js",
"check": "biome check",
"test": "vitest run --config ./tests/vitest.config.mts",
"test:coverage": "vitest run --config ./tests/vitest.config.mts --coverage",
"test:watch": "vitest watch --config ./tests/vitest.config.mts"
},
"keywords": [
"zigbee",
"OTA",
"over-the-air",
"zigbee-update"
],
"author": {
"name": "Koen Kanters",
"email": "[email protected]"
},
"contributors": [
{
"name": "Koen Kanters",
"url": "https://github.com/Koenkk"
},
{
"name": "Nerivec",
"url": "https://github.com/Nerivec"
}
],
"license": "GPL-3.0-or-later",
"description": "",
"dependencies": {
"tar": "^7.4.3"
},
"devDependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@biomejs/biome": "^1.9.4",
"@octokit/rest": "^21.1.1",
"@types/node": "^22.13.14",
"@vitest/coverage-v8": "^3.0.9",
"typescript": "^5.8.2",
"vitest": "^3.0.9"
}
}