-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.68 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@matrixai/ws",
"version": "2.0.2",
"author": "Matrix AI",
"contributors": [
{
"name": "Roger Qiu"
},
{
"name": "Brian Botha"
},
{
"name": "Amy Yan"
}
],
"description": "WebSocket Streaming Wrapper",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/MatrixAI/js-ws.git"
},
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./*.js": {
"types": "./dist/*.d.ts",
"import": "./dist/*.js"
},
"./*": "./dist/*"
},
"imports": {
"#*": "./dist/*"
},
"scripts": {
"prepare": "tsc -p ./tsconfig.build.json && patch-package",
"build": "shx rm -rf ./dist && tsc -p ./tsconfig.build.json",
"tsx": "tsx",
"test": "node ./scripts/test.mjs",
"lint": "eslint '{src,tests,scripts,benches}/**/*.{js,mjs,ts,mts,jsx,tsx}'",
"lintfix": "eslint '{src,tests,scripts,benches}/**/*.{js,mjs,ts,mts,jsx,tsx}' --fix",
"lint-shell": "find ./src ./tests ./scripts -type f -regextype posix-extended -regex '.*\\.(sh)' -exec shellcheck {} +",
"docs": "shx rm -rf ./docs && typedoc --gitRevision master --tsconfig ./tsconfig.build.json --out ./docs src",
"bench": "rimraf ./benches/results && tsx ./benches/index.ts"
},
"dependencies": {
"@matrixai/async-cancellable": "^2.0.0",
"@matrixai/async-init": "^2.1.0",
"@matrixai/async-locks": "^5.0.1",
"@matrixai/contexts": "^1.2.0",
"@matrixai/errors": "^2.1.2",
"@matrixai/events": "^4.0.0",
"@matrixai/logger": "^4.0.2",
"@matrixai/timer": "^2.1.0",
"ip-num": "^1.5.0",
"resource-counter": "^1.2.4",
"ws": "^8.13.0"
},
"devDependencies": {
"@fast-check/jest": "^2.0.1",
"@peculiar/asn1-pkcs8": "^2.3.0",
"@peculiar/asn1-schema": "^2.3.0",
"@peculiar/asn1-x509": "^2.3.0",
"@peculiar/webcrypto": "^1.4.0",
"@peculiar/x509": "^1.8.3",
"@swc/core": "^1.3.76",
"@swc/jest": "^0.2.29",
"@types/jest": "^29.5.2",
"@types/node": "^18.15.0",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"benny": "^3.7.1",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0-alpha.2",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"jest-junit": "^16.0.0",
"patch-package": "^8.0.0",
"prettier": "^3.0.0",
"semver": "^7.3.7",
"shx": "^0.3.4",
"systeminformation": "^5.21.4",
"tsx": "^3.12.7",
"typedoc": "^0.24.8",
"typescript": "^5.1.6"
}
}