-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
70 lines (70 loc) · 1.99 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.socketio",
"version": "7.0.1",
"description": "This adapter allows to communicate different web applications with ioBroker.",
"author": {
"name": "bluefox",
"email": "[email protected]"
},
"homepage": "https://github.com/ioBroker/ioBroker.socketio",
"keywords": [
"ioBroker",
"web"
],
"repository": {
"type": "git",
"url": "https://github.com/ioBroker/ioBroker.socketio"
},
"engines": {
"node": ">= 18"
},
"dependencies": {
"@iobroker/adapter-core": "^3.2.3",
"@iobroker/socket-classes": "^2.0.12",
"@iobroker/webserver": "^1.0.8",
"express-session": "^1.18.1",
"socket.io": "^2.5.1"
},
"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-dev": "^1.3.0",
"@iobroker/eslint-config": "^1.0.0",
"@iobroker/legacy-testing": "^2.0.2",
"@iobroker/testing": "^5.0.3",
"@iobroker/types": "^7.0.6",
"@iobroker/ws-server": "^4.2.6",
"@types/cookie-parser": "^1.4.8",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.1",
"@types/node": "^22.13.1",
"@types/passport": "^1.0.17",
"@types/socket.io": "^2.1.13",
"socket.io-client": "^2.5.0",
"typescript": "^5.7.3"
},
"bugs": {
"url": "https://github.com/ioBroker/ioBroker.socketio/issues"
},
"main": "dist/main.js",
"types": "dist/types.d.ts",
"files": [
"admin/",
"dist/",
"io-package.json",
"LICENSE"
],
"scripts": {
"test": "mocha --exit",
"build": "tsc -p tsconfig.build.json && node tasks",
"lint": "eslint -c eslint.config.mjs",
"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"
},
"license": "MIT",
"readmeFilename": "README.md"
}