-
-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
52 lines (52 loc) · 1.58 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
{
"name": "@iobroker/db-objects-redis",
"type": "module",
"version": "7.0.7-alpha.5-20250303-1bddb836d",
"engines": {
"node": ">=16.4.0"
},
"dependencies": {
"@iobroker/db-base": "file:../db-base",
"deep-clone": "^3.0.3",
"ioredis": "^4.28.2",
"mime-types": "^2.1.35",
"node.extend": "^2.0.2",
"semver": "^7.5.2"
},
"keywords": [
"ioBroker",
"redis",
"redundancy"
],
"author": "bluefox <dogafox@gmail.com>",
"contributors": [
"bluefox <dogafox@gmail.com>",
"Apollon77 <iobroker@fischer-ka.de>",
"foxriver76 <moritz.heusinger@gmail.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/ioBroker/ioBroker.js-controller/tree/master/packages/db-objects-redis"
},
"scripts": {
"build": "tsc -b tsconfig.build.json && tsc-alias",
"postbuild": "esm2cjs --in build/esm --out build/cjs -l error -t node18 && cpy ./lib/objects/**/*.lua ./build/esm/lib/objects/ --cwd=src && cpy ./lib/objects/**/*.lua ./build/cjs/lib/objects/ --cwd=src && cpy ./**/*.d.ts ./build/cjs/ --cwd=build/esm/"
},
"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"
}
},
"license": "Apache 2.0",
"publishConfig": {
"access": "public"
},
"files": [
"build/"
]
}