-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.92 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.92 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
{
"name": "@t34-dev/ts-ws-client",
"version": "1.1.1",
"description": "Robust TypeScript WebSocket client with auto-reconnection for React, Node.js, and web projects. Supports event handling and connection management.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"unpkg": "dist/index.min.js",
"jsdelivr": "dist/index.min.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "husky",
"clean": "shx rm -rf node_modules pnpm-lock.yaml",
"rmdist": "shx rm -rf dist",
"build": "rollup -c",
"test": "vitest",
"version-up": "node scripts/version.js",
"prepublishOnly": "npm run build",
"lint": "eslint .",
"format": "prettier --write .",
"check": "npm run lint && prettier --check .",
"pre-commit": "npm run format && npm run check"
},
"keywords": [
"starter",
"node",
"ts",
"react",
"husky",
"web",
"eslint",
"prettier",
"universal",
"typescript",
"package"
],
"engines": {
"node": ">= 18 < 21"
},
"author": "Vitalii Rozhkov <t34.dev@gmail.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/t34-dev/ts-ws-client.git"
},
"bugs": {
"url": "https://github.com/t34-dev/ts-ws-client/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://t34-dev.github.io/ts-ws-client/",
"devDependencies": {
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.2",
"rollup": "^2.75.6",
"rollup-plugin-terser": "^7.0.2",
"shx": "^0.3.4",
"typescript": "^5.4.5",
"vitest": "^2.0.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"prettier": "^3.3.3"
}
}