-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
99 lines (99 loc) · 3.92 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
93
94
95
96
97
98
99
{
"name": "iobroker.webui",
"version": "1.25.2",
"description": "ioBroker webui",
"type": "module",
"main": "dist/backend/main.js",
"scripts": {
"esbuild": "node esbuild.js",
"tsc": "tsc",
"start": "web-dev-server --open",
"startwww": "cd www && web-dev-server --node-resolve --open",
"prepublishOnly": "npm run build",
"build": "npm i && npm run reflection && gulp delAll && tsc && gulp",
"test:ts": "mocha --config test/mocharc.custom.json test/tests/*.js",
"test:package": "mocha test/package --exit",
"test:unit": "mocha test/unit --exit",
"test:integration": "mocha test/integration --exit",
"test": "npm run test:ts && npm run test:package",
"check": "tsc --noEmit",
"coverage": "nyc npm run test:ts",
"lint": "eslint --ext .ts src/",
"reflection": "npm run reflection-scripts && npm run reflection-props",
"reflection-scripts": "cross-env typescript-json-schema './dist/frontend/scripting/IobrokerWebuiScriptCommands.d.ts' '*' --ignoreErrors --strictNullChecks --propOrder > ./src/frontend/generated/ScriptCommands.json",
"reflection-props": "cp ./node_modules/@node-projects/web-component-designer-visualization-addons/dist/interfaces/IScriptMultiplexValue.d.ts ./src/frontend/interfaces/ && cross-env typescript-json-schema './src/frontend/interfaces/*.ts' '*' --ignoreErrors --strictNullChecks --propOrder > ./src/frontend/generated/Properties.json",
"release": "release-script"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iobroker-community-adapters/ioBroker.webui.git"
},
"author": "[email protected]",
"license": "MIT",
"keywords": [
"ioBroker",
"visualization",
"web-components"
],
"bugs": {
"url": "https://github.com/iobroker-community-adapters/ioBroker.webui/issues"
},
"homepage": "https://github.com/iobroker-community-adapters/ioBroker.webui#readme",
"engines": {
"node": ">=18"
},
"dependencies": {
"@iobroker/adapter-core": "^3.2.3",
"@types/node": "^22.10.7"
},
"devDependencies": {
"@adobe/css-tools": "4.4.1",
"@alcalzone/release-script": "^3.8.0",
"@alcalzone/release-script-plugin-iobroker": "^3.7.2",
"@alcalzone/release-script-plugin-license": "^3.7.0",
"@blockly/zoom-to-fit": "^6.0.12",
"@iobroker/socket-client": "^4.0.0",
"@iobroker/testing": "^5.0.0",
"@iobroker/webcomponent-selectid-dialog": "^1.0.3",
"@node-projects/base-custom-webcomponent": "0.27.8",
"@node-projects/lean-he-esm": "^3.3.0",
"@node-projects/node-html-parser-esm": "^6.2.0",
"@node-projects/propertygrid.webcomponent": "^1.3.0",
"@node-projects/splitview.webcomponent": "^1.0.1",
"@node-projects/web-component-designer": "^0.1.240",
"@node-projects/web-component-designer-codeview-monaco": "^0.1.33",
"@node-projects/web-component-designer-htmlparserservice-nodehtmlparser": "^0.1.11",
"@node-projects/web-component-designer-stylesheetservice-css-tools": "^0.1.10",
"@node-projects/web-component-designer-visualization-addons": "^0.1.113",
"@node-projects/web-component-designer-widgets-wunderbaum": "^0.1.32",
"@types/json-schema": "^7.0.15",
"@web/dev-server": "^0.4.6",
"blockly": "^11.2.1",
"chai": "^5.1.2",
"chai-as-promised": "^8.0.1",
"construct-style-sheets-polyfill": "^3.1.0",
"cross-env": "^7.0.3",
"dayjs": "^1.11.13",
"del": "^8.0.0",
"dock-spawn-ts": "^3.2.1",
"es-module-shims": "1.10.1",
"eslint": "^9.18.0",
"esprima-next": "^6.0.3",
"glob-stream": "^8.0.2",
"gulp": "^5.0.0",
"gulp-git": "^2.11.0",
"gulp-replace": "^1.1.4",
"long": "^5.2.4",
"mobile-drag-drop": "^3.0.0-rc.0",
"mocha": "^11.0.1",
"monaco-editor": "^0.50.0",
"nyc": "^17.1.0",
"sinon-chai": "^4.0.0",
"toastify-js": "^1.12.0",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"typescript-json-schema": "^0.65.1",
"wunderbaum": "0.12.0"
}
}