-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.33 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "ember-zli",
"description": "Interact with EmberZNet-based adapters using zigbee-herdsman 'ember' driver",
"version": "2.9.1",
"author": "Nerivec",
"bin": {
"ember-zli": "bin/run.js"
},
"bugs": "https://github.com/Nerivec/ember-zli/issues",
"dependencies": {
"@inquirer/prompts": "^7",
"@oclif/core": "^4",
"@oclif/plugin-help": "^6",
"@oclif/plugin-not-found": "^3",
"@oclif/plugin-version": "^2",
"bonjour-service": "^1",
"cli-progress": "^3",
"winston": "^3",
"zigbee-herdsman": "2.1.7"
},
"devDependencies": {
"@eslint/js": "^9",
"@ianvs/prettier-plugin-sort-imports": "^4",
"@oclif/prettier-config": "^0",
"@oclif/test": "^4",
"@types/cli-progress": "^3",
"@types/eslint__js": "^8",
"@types/mocha": "^10",
"@types/node": "^20",
"eslint": "^9",
"eslint-config-prettier": "^9",
"mocha": "^10",
"oclif": "^4",
"prettier": "^3",
"shx": "^0",
"ts-node": "^10",
"typescript": "^5",
"typescript-eslint": "^8"
},
"engines": {
"node": ">=20.15.0"
},
"files": [
"/bin",
"/dist",
"/oclif.manifest.json"
],
"homepage": "https://github.com/Nerivec/ember-zli",
"keywords": [
"zigbee2mqtt",
"z2m",
"zigbee-herdsman",
"herdsman",
"ember",
"emberznet",
"ezsp",
"silabs",
"zigbee"
],
"license": "GPL-3.0-or-later",
"main": "dist/index.js",
"type": "module",
"oclif": {
"bin": "ember-zli",
"dirname": "ember-zli",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-version",
"@oclif/plugin-not-found"
],
"topicSeparator": " ",
"topics": {}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nerivec/ember-zli.git"
},
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint .",
"postpack": "shx rm -f oclif.manifest.json",
"xposttest": "npm run lint",
"prepack": "oclif manifest && oclif readme",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"build:run": "npm run build && npm run prepack && npm run postpack",
"update-fw-links": "node ./dist/utils/update-firmware-links.js"
},
"types": "dist/index.d.ts"
}