-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.34 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.34 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
{
"name": "websocket-ts",
"description": "A WebSocket client library with optional reconnecting and buffering capabilities.",
"version": "2.3.0",
"main": "dist/cjs/src/index.js",
"types": "dist/cjs/src/index.d.ts",
"module": "dist/esm/src/index.js",
"license": "MIT",
"keywords": [
"websocket",
"browser",
"client",
"typescript",
"reconnecting",
"buffered"
],
"sideEffects": false,
"repository": {
"url": "github:jjxxs/websocket-ts"
},
"scripts": {
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"lint": "cross-env-shell eslint './src/{**/*,*}.{js,ts}' './tests/{**/*,*}.{js,ts}'",
"test": "vitest",
"test:coverage": "vitest --coverage"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.4",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"@vitest/coverage-v8": "^3.2.4",
"coveralls-next": "^5.0.0",
"cross-env": "^10.1.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^16.5.0",
"jsdom": "^26.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^3.2.4",
"ws": "^8.20.0"
}
}