-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.33 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.33 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "create-sati-agent",
"version": "0.4.0",
"description": "CLI for AI agent identity on Solana - register, discover, review, and check reputation via SATI",
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"bin": {
"create-sati-agent": "./dist/bin/cli.js"
},
"scripts": {
"build": "pnpm run clean && tsdown --publint && pnpm run copy-templates",
"copy-templates": "mkdir -p dist/templates && cp src/templates/*.jsonc dist/templates/",
"dev": "tsdown --watch",
"type-check": "tsc --noEmit",
"lint": "biome check",
"lint:fix": "biome check --write",
"check": "pnpm type-check && pnpm lint",
"clean": "rm -rf dist",
"prepublishOnly": "pnpm build",
"agent:init": "node dist/bin/cli.js init",
"agent:publish": "node dist/bin/cli.js publish",
"agent:publish:dry": "node dist/bin/cli.js publish --dry-run",
"agent:search": "node dist/bin/cli.js search",
"agent:info": "node dist/bin/cli.js info",
"agent:give-feedback": "node dist/bin/cli.js give-feedback"
},
"dependencies": {
"@cascade-fyi/sati-agent0-sdk": "^0.5.0",
"@cascade-fyi/sati-sdk": "^0.8.0",
"@clack/prompts": "^0.11.0",
"@solana-program/system": "^0.11.0",
"@solana-program/token-2022": "^0.9.0",
"@solana/kit": "^5.5.1",
"@stricli/core": "^1.2.4",
"agent0-sdk": "^1.5.0",
"picocolors": "^1.1.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@types/node": "^22.0.0",
"publint": "^0.3.17",
"tsdown": "^0.20.3",
"typescript": "^5.9.0"
},
"files": [
"dist/**",
"README.md",
"LICENSE",
"docs/best-practices/**"
],
"keywords": [
"solana",
"ai-agent",
"identity",
"sati",
"erc-8004",
"reputation",
"x402"
],
"license": "Apache-2.0",
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cascade-protocol/create-sati-agent.git"
},
"homepage": "https://github.com/cascade-protocol/create-sati-agent#readme",
"bugs": {
"url": "https://github.com/cascade-protocol/create-sati-agent/issues"
}
}