forked from tonyoconnell/agent-launch-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.16 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.16 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
{
"name": "agent-launch-toolkit",
"version": "1.0.0",
"private": true,
"description": "AgentLaunch Toolkit — SDK, CLI, MCP server, and templates for AI agent token launches",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build -w packages/sdk -w packages/templates && npm run build -w packages/cli -w packages/mcp",
"test": "npm run test --workspaces --if-present",
"clean": "npm run clean --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"test:publish": "bash scripts/test-publish.sh",
"prepublish:all": "npm run build && npm run test && npm run test:publish",
"publish:all": "npm run prepublish:all && npm publish -w packages/sdk && npm publish -w packages/templates && npm publish -w packages/cli && npm publish -w packages/mcp",
"deploy": "python3 examples/scripts/deploy-to-agentverse.py",
"cli": "npx agentlaunch",
"mcp": "npx agent-launch-mcp"
},
"engines": {
"node": ">=18"
},
"license": "MIT",
"dependencies": {
"dotenv": "^17.3.1"
},
"devDependencies": {
"@cosmjs/amino": "^0.38.1",
"@cosmjs/crypto": "^0.38.1",
"bech32": "^2.0.0"
}
}