-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.32 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.32 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
{
"name": "@resciencelab/dap",
"version": "0.3.2",
"description": "Direct encrypted P2P communication between OpenClaw instances",
"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": "dap",
"label": "DAP",
"selectionLabel": "DAP (P2P)",
"docsPath": "/channels/dap",
"blurb": "Direct encrypted P2P messaging. No servers, no middlemen.",
"order": 90,
"aliases": [
"p2p"
]
},
"install": {
"npmSpec": "@resciencelab/dap",
"defaultChoice": "npm"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"version": "changeset version && node scripts/sync-version.mjs",
"release": "npm run build && changeset publish",
"prepublishOnly": "npm run build"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"openclaw",
"plugin",
"p2p",
"ed25519",
"agent-network"
],
"license": "MIT",
"dependencies": {
"@noble/hashes": "^1.3.3",
"fastify": "^5.7.4",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@types/node": "^20.11.5",
"typescript": "^5.3.3"
}
}