-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.9 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
57
58
59
60
61
62
63
64
65
66
{
"name": "iobroker.text2command",
"version": "5.0.0",
"description": "Convert texts to ioBroker commands.",
"author": {
"name": "bluefox",
"email": "dogafox@gmail.com"
},
"homepage": "https://github.com/ioBroker/ioBroker.text2command",
"keywords": [
"ioBroker",
"text2command"
],
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "https://github.com/ioBroker/ioBroker.text2command"
},
"dependencies": {
"@iobroker/adapter-core": "^3.4.3"
},
"devDependencies": {
"@alcalzone/release-script": "^5.2.1",
"@alcalzone/release-script-plugin-iobroker": "^5.2.0",
"@alcalzone/release-script-plugin-license": "^5.2.2",
"@iobroker/eslint-config": "^2.3.4",
"@iobroker/build-tools": "^3.0.1",
"@iobroker/legacy-testing": "^3.0.0",
"@iobroker/types": "^7.2.2",
"@types/node": "^26.1.2",
"tsx": "^4.23.10",
"typescript": "~6.0.3"
},
"bugs": {
"url": "https://github.com/ioBroker/ioBroker.text2command/issues"
},
"main": "build/main.js",
"files": [
"admin/",
"build/",
"img/",
"io-package.json",
"LICENSE"
],
"scripts": {
"test": "node tasks --2-compile && mocha --exit",
"test:package": "mocha test/testPackageFiles.js --exit",
"test:integration": "mocha test/*.js --exit",
"prepublishOnly": "node tasks",
"build": "node tasks",
"tsc": "node tasks --2-compile",
"check-ts": "tsc --noEmit",
"lint": "eslint -c eslint.config.mjs",
"release": "release-script",
"release-patch": "release-script patch --yes",
"release-minor": "release-script minor --yes",
"release-major": "release-script major --yes",
"update-packages": "npx npm-check-updates --upgrade && cd src-admin && npx npm-check-updates --upgrade",
"npm": "npm i && cd src-admin && npm i -f",
"beforePush": "node tasks"
},
"license": "MIT",
"readmeFilename": "README.md"
}