-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.22 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.22 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
{
"name": "@deilux/websocket-js",
"version": "0.3.0",
"description": "Make WebSockets great again",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"engines": {
"node": ">=16.20"
},
"scripts": {
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -p tsconfig.json",
"build:esm": "tsc -p tsconfig.esm.json",
"test": "vitest --run",
"biome:check": "biome check --write",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deil/websocket.js.git"
},
"keywords": [
"websocket",
"ws",
"reconnect",
"auto-reconnect",
"realtime",
"rpc"
],
"author": "Anton Kosiakin <anton@kosya.club>",
"license": "MIT",
"bugs": {
"url": "https://github.com/deil/websocket.js/issues"
},
"homepage": "https://github.com/deil/websocket.js#readme",
"devDependencies": {
"@biomejs/biome": "2.2.2",
"@types/node": "^24.3.0",
"@vitest/coverage-v8": "^3.2.4",
"happy-dom": "^18.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}