forked from deepstreamIO/deepstream.io-client-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.63 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
{
"name": "@nxtedition/deepstream.io-client-js",
"version": "30.0.1",
"description": "the javascript client for deepstream.io",
"homepage": "http://deepstream.io",
"type": "module",
"bugs": {
"url": "https://github.com/deepstreamIO/deepstream.io-client-js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/deepstreamIO/deepstream.io-client-js.git"
},
"license": "Apache-2.0",
"author": "deepstreamHub GmbH",
"main": "src/client.js",
"browser": {
"ws": false
},
"scripts": {
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,md,ts}": [
"eslint",
"prettier --write"
]
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true
},
"dependencies": {
"@nxtedition/json-path": "^1.0.8",
"bufferutil": "^4.0.8",
"component-emitter2": "^1.3.5",
"invariant": "^2.2.4",
"lodash.clonedeep": "^4.5.0",
"utf-8-validate": "^6.0.4",
"ws": "^8.18.0",
"xuid": "^4.1.3",
"xxhash-wasm": "^1.0.2"
},
"devDependencies": {
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.1.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.8",
"mitata": "^0.1.11",
"pinst": "^3.0.0",
"prettier": "^3.3.3",
"rxjs": "^7.8.1",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.1"
},
"peerDependencies": {
"rxjs": ">=6.x"
}
}