-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.97 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
{
"name": "wsgo",
"description": "WebSocket client for the browser. Simplifying development and debugging",
"version": "1.3.1",
"type": "module",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "husky install | chmod ug+x .husky/*",
"build": "vite build",
"test": "vitest",
"test:cov": "vitest run --coverage",
"type:check": "tsc",
"lint": "eslint ./src/**/*.ts --ignore-path .gitignore",
"lint:fix": "eslint --fix ./src/**/*.ts --ignore-path .gitignore",
"format": "prettier . --check",
"format:fix": "prettier --write ."
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.2",
"@semantic-release/release-notes-generator": "^12.1.0",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@vitest/coverage-v8": "^1.2.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"jsdom": "^24.0.0",
"prettier": "^3.2.4",
"semantic-release": "^23.0.0",
"typescript": "^5.3.3",
"vite": "^5.0.8",
"vite-plugin-dts": "^3.7.2",
"vitest": "^1.2.2",
"ws": "^8.16.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/melishev/wsgo.git"
},
"author": {
"name": "Matvey Melishev",
"email": "[email protected]"
},
"keywords": [
"WebSocket",
"RFC-6455",
"real-time"
],
"license": "MIT",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}