-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
87 lines (87 loc) · 2.79 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
{
"name": "iobroker.echarts",
"version": "2.0.3",
"description": "Build useful charts in ioBroker",
"author": {
"name": "bluefox",
"email": "[email protected]"
},
"homepage": "https://github.com/ioBroker/ioBroker.echarts",
"license": "Apache-2.0",
"keywords": [
"charts",
"diagram",
"ioBroker"
],
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/ioBroker/ioBroker.echarts"
},
"optionalDependencies": {
"canvas": "^2.11.2",
"echarts": "^5.6.0",
"jsdom": "^25.0.1"
},
"dependencies": {
"moment": "^2.30.1",
"@iobroker/adapter-core": "^3.2.3"
},
"devDependencies": {
"@alcalzone/release-script": "^3.8.0",
"@alcalzone/release-script-plugin-iobroker": "^3.7.2",
"@alcalzone/release-script-plugin-license": "^3.7.0",
"@iobroker/adapter-react-v5": "^7.4.10",
"@iobroker/build-tools": "^2.0.14",
"@iobroker/eslint-config": "^1.0.0",
"@iobroker/legacy-testing": "^2.0.1",
"@iobroker/testing": "^5.0.0",
"@iobroker/vis-2-widgets-react-dev": "^4.0.4",
"@mui/icons-material": "^6.3.0",
"@mui/material": "^6.3.0",
"@types/jsdom": "^21.1.7",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"axios": "^1.7.9",
"chai": "^4.5.0",
"colorette": "^2.0.20",
"mocha": "^11.0.1",
"puppeteer": "^23.11.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"main": "build-backend/main.js",
"files": [
"admin/",
"img/",
"widgets/",
"www/",
"io-package.json",
"LICENSE",
"build-backend/"
],
"scripts": {
"test:package": "mocha test/package --exit",
"test:gui": "mocha ./test/*.gui.js --exit",
"test": "npm run test:package",
"prepublishOnly": "npm run build",
"tsc": "tsc -p tsconfig.build.json",
"build": "npm run build:widgets && npm run build:chart && npm run build:preview && npm run build:edit && npm run tsc",
"build:widgets": "node tasksWidgets",
"build:chart": "node tasksChart",
"build:preview": "node tasksPreview",
"build:edit": "node tasksEdit.js",
"release": "release-script",
"release-patch": "release-script patch --yes",
"release-minor": "release-script minor --yes",
"release-major": "release-script major --yes",
"update-packages": "npx -y npm-check-updates --upgrade && cd src && npx -y npm-check-updates --upgrade && cd ../src-chart && npx -y npm-check-updates --upgrade && cd ../src-preview && npx -y npm-check-updates --upgrade && cd ../src-widgets && npx -y npm-check-updates --upgrade",
"npm": "npm i && cd src && npm i -f && cd ../src-chart && npm i -f && cd ../src-preview && npm i -f && cd ../src-widgets && npm i -f"
},
"bugs": {
"url": "https://github.com/ioBroker/ioBroker.echarts/issues"
},
"readmeFilename": "README.md"
}