-
-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.85 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.85 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
{
"name": "@zwave-js/firmware-updates",
"version": "0.0.1",
"description": "The firmware update service for Z-Wave JS",
"repository": "https://github.com/zwave-js/firmware-updates",
"author": "Dominic Griesel <dominic.griesel@nabucasa.com>",
"license": "MIT",
"type": "module",
"scripts": {
"check": "tsc -p tsconfig.build.json --noEmit && tsc -p src/maintenance/tsconfig.json --noEmit && tsc -p .github/scripts/tsconfig.json --noEmit",
"check:configs": "yarn tsx src/maintenance/check_configs.ts",
"lint": "eslint .",
"test:ci": "NODE_OPTIONS='--loader=tsx' ava",
"test": "yarn test:ci",
"dev": "wrangler dev",
"upload": "yarn tsx src/maintenance/upload.ts"
},
"dependencies": {
"itty-router": "^5.0.22",
"json-logic-js": "^2.0.2",
"json5": "^2.2.3",
"path-browserify": "^1.0.1",
"semver": "^7.7.2",
"zod": "^3.19.1"
},
"devDependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^5.0.3",
"@cloudflare/workers-types": "^4.20250910.0",
"@types/eslint": "^9.6.1",
"@types/json-logic-js": "^2.0.1",
"@types/node": "^22.18.1",
"@types/path-browserify": "^1.0.0",
"@types/semver": "^7.7.1",
"@types/source-map-support": "^0.5.10",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"@zwave-js/firmware-integrity": "^1.0.2",
"ava": "^4.3.3",
"comment-json": "^4.6.2",
"esbuild": "^0.15.7",
"esbuild-register": "^3.3.3",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"ky": "^1.10.0",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.2.0",
"tsx": "^3.13.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.43.0",
"wrangler": "^3.73.0",
"zod-to-json-schema": "^3.17.1"
},
"packageManager": "yarn@3.2.1"
}