forked from waynedev9598/PixelHQ-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.27 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.27 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
{
"name": "pixelhq",
"version": "1.0.1",
"description": "Bridge server that watches Claude Code files and broadcasts events via WebSocket",
"type": "module",
"main": "dist/src/index.js",
"bin": {
"pixelhq": "dist/bin/cli.js"
},
"files": [
"dist/",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc",
"start": "node dist/bin/cli.js",
"dev": "tsc && node --watch dist/bin/cli.js",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"claude-code",
"websocket",
"pixel-office",
"pixelhq"
],
"author": "waynedev9598",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/waynedev9598/pixelhq-bridge.git"
},
"homepage": "https://github.com/waynedev9598/pixelhq-bridge#readme",
"bugs": "https://github.com/waynedev9598/pixelhq-bridge/issues",
"dependencies": {
"@inquirer/prompts": "^8.2.0",
"bonjour-service": "^1.2.1",
"chokidar": "^3.6.0",
"uuid": "^9.0.1",
"ws": "^8.16.0"
},
"devDependencies": {
"@types/node": "^25.1.0",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.18.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}