-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.75 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.75 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
65
66
67
68
{
"name": "@resciencelab/agent-world-network",
"version": "1.6.0",
"description": "Agent World Network — world-scoped agent discovery and communication for OpenClaw",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"scripts",
"openclaw.plugin.json",
"skills",
"README.md"
],
"openclaw": {
"extensions": [
"./dist/index.js"
],
"channel": {
"id": "awn",
"label": "AWN",
"selectionLabel": "AWN (Agent World Network)",
"docsPath": "/channels/awn",
"blurb": "Agent World Network — world-scoped agent communication.",
"order": 90,
"aliases": [
"p2p"
]
},
"install": {
"npmSpec": "@resciencelab/agent-world-network",
"defaultChoice": "npm"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"version": "changeset version && node scripts/sync-version.mjs",
"release": "npm run build && npm --prefix packages/agent-world-sdk run build && changeset publish && cd packages/agent-world-sdk && (npm publish --access public 2>/dev/null || echo 'SDK already published, skipping')",
"prepublishOnly": "npm run build"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"openclaw",
"plugin",
"p2p",
"ed25519",
"agent-network"
],
"gateway": {
"url": "https://gateway.agentworlds.ai"
},
"license": "MIT",
"dependencies": {
"@noble/hashes": "^1.3.3",
"fastify": "^5.7.4",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@fastify/cors": "^10.0.0",
"@fastify/websocket": "^11.0.0",
"@resciencelab/agent-world-sdk": "file:packages/agent-world-sdk",
"@types/node": "^20.11.5",
"typescript": "^5.3.3"
}
}