-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.51 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.51 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
{
"name": "@dp-pcs/ogp",
"version": "0.7.2",
"description": "Open Gateway Protocol (OGP) - Peer-to-peer federation daemon for OpenClaw AI gateways with cryptographic signatures",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"ogp": "dist/cli.js",
"ogp-install-skills": "scripts/install-skills.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest",
"test:coverage": "vitest --coverage",
"prepublishOnly": "npm run build",
"postinstall": "node scripts/install-skills.js || echo 'Note: Run ogp-install-skills to install OGP skills for your AI agent'"
},
"keywords": [
"ogp",
"openclaw",
"federation",
"ai-gateway",
"protocol",
"peer-to-peer",
"ed25519",
"cryptographic-signatures"
],
"author": "David Proctor",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dp-pcs/ogp.git"
},
"homepage": "https://github.com/dp-pcs/ogp#readme",
"bugs": {
"url": "https://github.com/dp-pcs/ogp/issues"
},
"files": [
"dist",
"skills",
"scripts",
"docs",
"README.md",
"package.json"
],
"dependencies": {
"@types/ws": "^8.18.1",
"commander": "^12.0.0",
"express": "^4.18.2",
"ws": "^8.20.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.0",
"@vitest/coverage-v8": "^4.1.3",
"typescript": "^5.3.3",
"vitest": "^4.1.3"
},
"engines": {
"node": ">=18.0.0"
}
}