-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.62 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.62 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
{
"name": "@iobroker/plugin-base",
"version": "3.0.3",
"description": "Base module for plugins for js-controller and adapters",
"author": {
"name": "Ingo Fischer",
"email": "iobroker@fischer-ka.de"
},
"contributors": [
"Al Calzone <d.griesel@gmx.net>",
"Denis Haev <dogafox@gmail.com>"
],
"main": "build/cjs/index.js",
"module": "build/esm/index.js",
"types": "build/esm/index.d.ts",
"exports": {
".": {
"import": "./build/esm/index.js",
"require": "./build/cjs/index.js",
"types": "./build/esm/index.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"build/",
"LICENSE"
],
"scripts": {
"postbuild": "esm2cjs --in build/esm --out build/cjs -l error -t node18 && node tasks",
"build": "tsc -p tsconfig.build.json && npm run postbuild",
"prepublishOnly": "npm run build",
"release": "release-script"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ioBroker/plugin-base.git"
},
"keywords": [
"iobroker",
"adapter",
"plugins"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ioBroker/plugin-base/issues"
},
"homepage": "https://github.com/ioBroker/plugin-base#readme",
"devDependencies": {
"@alcalzone/pak": "^0.11.0",
"@alcalzone/esm2cjs": "^1.4.2",
"@alcalzone/release-script": "^5.0.0",
"@alcalzone/release-script-plugin-license": "^4.0.0",
"@iobroker/db-objects-redis": "^7.0.7",
"@iobroker/db-states-redis": "^7.0.7",
"@iobroker/eslint-config": "^2.2.0",
"@iobroker/types": "^7.0.7",
"@types/node": "^25.0.9",
"typescript": "~5.9.3"
}
}