-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.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
{
"name": "bun-pulse",
"type": "module",
"version": "1.5.0",
"description": "BunPulse is a lightweight, high-performance WebSocket server built on Bun, fully compatible with the Pusher protocol. Easily implement real-time communication for your applications with minimal setup.",
"author": "Stephen Jason Wang",
"license": "AGPL-3.0",
"homepage": "https://github.com/stephenjason89/bun-pulse#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/stephenjason89/bun-pulse.git"
},
"bugs": {
"url": "https://github.com/stephenjason89/bun-pulse/issues"
},
"keywords": [
"bun",
"pusher",
"websocket",
"real-time",
"pusher-protocol",
"server",
"bun-websocket",
"pusher-alternative",
"realtime-communication",
"pubsub",
"push-notifications"
],
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"test": "bun test",
"build": "tsc",
"prepublishOnly": "npm run build",
"prepare": "husky",
"commitlint": "commitlint --edit"
},
"dependencies": {
"@axiomhq/js": "^1.2.0",
"consola": "^3.2.3"
},
"devDependencies": {
"@antfu/eslint-config": "^3.7.3",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@types/bun": "^1.1.11",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^9.11.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10"
},
"lint-staged": {
"*.{js,cjs,mjs,ts,jsx,json,json5,tsx,vue,md}": "eslint --fix"
}
}