-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "agentos",
"private": true,
"packageManager": "pnpm@10.13.1",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"seed": "npx tsx scripts/seed-testnet.ts",
"demo": "npx tsx scripts/seed-testnet.ts && echo '\n🎬 Demo URLs:' && echo ' / — Landing (Hero + Search)' && echo ' /explore — Public Agent Directory' && echo ' /create — Dashboard (Create Agent)' && echo ' /agent/alpha — Agent Profile' && echo ' /agent/alpha/skills — Skill Console' && echo ' /agent/alpha/delegate — Delegation UI'",
"contracts:build": "cd packages/contracts && sui move build",
"contracts:test": "cd packages/contracts && sui move test",
"contracts:publish": "cd packages/contracts && sui client publish",
"agentos": "node packages/cli/dist/agentos.js"
},
"devDependencies": {
"dotenv": "^17.4.2",
"tsx": "^4.22.4",
"turbo": "^2.0.0",
"typescript": "^5.4.0"
}
}