-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.92 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.92 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
67
68
{
"name": "@iobroker/dm-gui-components",
"version": "9.0.4",
"description": "ReactJS components to develop admin interface for ioBroker device manager.",
"author": {
"name": "Jey Cee",
"email": "iobroker@all-smart.net"
},
"contributors": [
{
"name": "UncleSamSwiss"
},
{
"name": "bluefox",
"email": "dogafox@gmail.com"
}
],
"scripts": {
"prepublishOnly": "npm run build",
"clean": "rimraf build",
"build": "tsc && tsc-alias",
"check-ts": "tsc --noEmit --checkJS false",
"lint": "eslint -c eslint.config.mjs src",
"release": "release-script -y --noPush --no-update-lockfile",
"release-patch": "release-script patch --yes --no-update-lockfile --publishAll",
"release-minor": "release-script minor --yes --no-update-lockfile --publishAll",
"release-major": "release-script major --yes --no-update-lockfile --publishAll",
"update-packages": "npx -y npm-check-updates --upgrade"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ioBroker/dm-gui-components.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"build/",
"LICENSE",
"README.md"
],
"module": "./build/index.js",
"types": "./build/index.d.ts",
"keywords": [
"iobroker",
"adapter",
"iot"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ioBroker/dm-gui-components/issues"
},
"homepage": "https://github.com/ioBroker/dm-gui-components#readme",
"dependencies": {
"@iobroker/adapter-react-v5": "^8.1.1",
"@iobroker/json-config": "^8.2.3"
},
"devDependencies": {
"@alcalzone/release-script": "^5.1.1",
"@alcalzone/release-script-plugin-license": "^5.1.1",
"@iobroker/build-tools": "^3.0.1",
"@iobroker/dm-utils": "^3.0.0",
"@iobroker/dm-utils-v1": "npm:@iobroker/dm-utils@^1.0.16",
"@iobroker/eslint-config": "^2.2.0",
"tsc-alias": "^1.8.16",
"typescript": "~5.9.3"
}
}