-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 1.33 KB
/
package.json
File metadata and controls
22 lines (22 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "zero-agents",
"version": "0.0.1",
"description": "ZeroAgent framework - Self-evolving agents with 0G storage",
"private": true,
"type": "module",
"scripts": {
"test:storage": "tsx scripts/test-storage.ts",
"test:agent": "pnpm --filter @zero-agents/core build && tsx scripts/test-agent.ts",
"test:live": "pnpm --filter @zero-agents/core build && tsx scripts/test-storage.ts && tsx scripts/test-ens-identity.ts && tsx -e \"process.env.ZERO_AGENT_LIVE_TEST='1'; await import('./scripts/test-agent.ts')\"",
"test:evolution": "tsx scripts/test-evolution-modules.ts",
"test:unit": "tsx packages/core/src/__tests__/sandbox.test.ts && tsx packages/core/src/__tests__/evaluator.test.ts && tsx packages/core/src/__tests__/errors.test.ts && tsx packages/core/src/__tests__/coordinator-safety.test.ts && tsx packages/core/src/__tests__/tool-registry.test.ts && tsx packages/core/src/__tests__/axl-client.test.ts && tsx packages/core/src/__tests__/agent-strategy.test.ts",
"validate:framework": "pnpm --filter @zero-agents/core validate:install",
"build": "pnpm --filter @zero-agents/core build && pnpm --filter @zero-agents/demo-agent build && pnpm --filter @zero-agents/dashboard build",
"dev": "pnpm -r dev"
},
"devDependencies": {
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"viem": "^2.48.4"
}
}