-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 921 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 921 Bytes
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
{
"name": "walkie-sh",
"version": "1.5.0",
"description": "P2P communication CLI for AI agents. No server. No setup. Just talk.",
"homepage": "https://walkie.sh",
"repository": {
"type": "git",
"url": "git+https://github.com/vikasprogrammer/walkie.git"
},
"bugs": {
"url": "https://github.com/vikasprogrammer/walkie/issues"
},
"license": "MIT",
"author": "vikasprogrammer",
"keywords": [
"p2p",
"agent",
"ai",
"communication",
"walkie-talkie",
"hyperswarm",
"cli",
"llm",
"multi-agent"
],
"main": "./src/api.js",
"bin": {
"walkie": "./bin/walkie.js"
},
"files": [
"bin/",
"src/"
],
"scripts": {
"test": "node --test test/*.test.js",
"test:p2p": "node test/two-daemons.js"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"commander": "^12.0.0",
"hyperswarm": "^4.0.0",
"ws": "^8.0.0"
}
}