-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.25 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.25 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
{
"name": "@0xkobold/pi-gateway",
"version": "0.4.0",
"description": "Hermes-style messaging gateway for pi - multi-platform agent with sessions, security, and background tasks",
"author": "0xKobold",
"license": "MIT",
"keywords": ["pi-package", "pi-extension", "gateway", "messaging", "hermes", "multi-platform"],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist/",
"src/",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "npx tsx tests/index.ts",
"demo": "npx tsx tests/demo-server.ts",
"client": "npx tsx tests/client-demo.ts",
"prepublishOnly": "rm -rf dist && tsc"
},
"dependencies": {
"ws": "^8.18.0"
},
"devDependencies": {
"@types/node": "^20.19.37",
"@types/ws": "^8.18.1",
"bun-types": "^1.3.11",
"tsx": "^4.19.0",
"typescript": "^6.0.2"
},
"peerDependencies": {
"@mariozechner/pi-coding-agent": ">=0.65.0",
"@sinclair/typebox": ">=0.32.0"
},
"pi": {
"extensions": ["./dist/index.js"]
},
"repository": {
"type": "git",
"url": "https://github.com/0xKobold/pi-gateway.git"
}
}