-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.07 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.07 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": "agentdex-cli",
"version": "0.4.4",
"description": "CLI and SDK for the agentdex AI agent directory",
"type": "module",
"bin": {
"agentdex": "./dist/cli.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"prepublishOnly": "npm run build"
},
"keywords": [
"agentdex",
"nostr",
"ai",
"agent",
"directory",
"nip-05"
],
"author": "Koda <kodabuilds@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Koda-Builds/agentdex-cli"
},
"dependencies": {
"@getalby/sdk": "^7.0.0",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"inquirer": "^9.2.0",
"nostr-tools": "^2.10.4",
"ora": "^8.0.0",
"qrcode-terminal": "^0.12.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.0",
"@types/node": "^22.0.0",
"@types/qrcode-terminal": "^0.12.0",
"typescript": "^5.4.0"
}
}