-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
70 lines (70 loc) · 1.8 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
{
"name": "@iobroker/socket-client",
"version": "3.1.2",
"description": "Client libraries for ioBroker using web sockets",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/esm/index.d.ts"
},
"./package.json": "./package.json"
},
"types": "dist/esm/index.d.ts",
"typesVersions": {
"*": {
"dist/esm/index.d.ts": [
"dist/esm/index.d.ts"
],
"dist/cjs/index.d.ts": [
"dist/esm/index.d.ts"
],
"*": [
"dist/esm/*"
]
}
},
"scripts": {
"build": "tsc",
"postbuild": "esm2cjs --in dist/esm --out dist/cjs -l error",
"watch": "npm run build -- --watch",
"lint": "eslint -c eslint.config.mjs",
"prepare": "npm run build",
"release": "release-script -lf",
"release-patch": "release-script patch --yes --lf",
"release-minor": "release-script minor --yes --lf",
"release-major": "release-script major --yes --lf",
"update-packages": "ncu --upgrade",
"npm": "npm i -f"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ioBroker/socket-client.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ioBroker/socket-client/issues"
},
"files": [
"src/",
"dist/",
"package-lock.json",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/ioBroker/socket-client",
"devDependencies": {
"@alcalzone/esm2cjs": "^1.4.0",
"@alcalzone/release-script": "~3.8.0",
"@alcalzone/release-script-plugin-license": "~3.7.0",
"@iobroker/eslint-config": "^0.1.7",
"@iobroker/types": "^6.0.11",
"@types/node": "^22.9.0",
"typescript": "~5.6.3"
}
}