forked from deepstreamIO/deepstream.io-client-js
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.8 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.8 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@nxtedition/deepstream.io-client-js",
"version": "32.0.33",
"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",
"types": "src/client.d.ts",
"browser": {
"ws": false
},
"scripts": {
"prepublishOnly": "yarn test:types && pinst --disable",
"postpublish": "pinst --enable",
"prepare": "husky",
"test:types": "tsd"
},
"lint-staged": {
"*.{js,jsx,md,ts}": [
"eslint",
"prettier --write"
]
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true
},
"dependencies": {
"@nxtedition/json-path": "^1.0.8",
"type-fest": "^4.33.0",
"bufferutil": "^4.0.8",
"component-emitter2": "^1.3.5",
"invariant": "^2.2.4",
"lodash.clonedeep": "^4.5.0",
"utf-8-validate": "^6.0.5",
"varint": "^6.0.0",
"ws": "^8.18.0",
"xuid": "^4.1.3",
"xxhash-wasm": "^1.0.2"
},
"devDependencies": {
"@types/node": "^22.10.3",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.12.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.1.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"mitata": "^1.0.10",
"pinst": "^3.0.0",
"prettier": "^3.3.3",
"rxjs": "^7.8.1",
"tsd": "^0.33.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2"
},
"peerDependencies": {
"rxjs": ">=6.x"
}
}