-
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) · 866 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 866 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "agentic-wallet",
"version": "1.0.0",
"description": "Programmatic Solana wallets — create, sign, hold tokens, and interact with on-chain programs",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm --filter @agentic-wallet/core build && pnpm --filter @agentic-wallet/cli build && pnpm --filter @agentic-wallet/mcp-server build",
"dev": "pnpm -r --parallel dev",
"start": "pnpm build && pnpm cli",
"cli": "pnpm --filter @agentic-wallet/cli build && node packages/cli/dist/index.js",
"key:import": "pnpm --filter @agentic-wallet/core build && node packages/wallet-core/dist/scripts/import-system-keys.js",
"test": "pnpm -r test",
"lint": "pnpm -r lint",
"clean": "pnpm -r clean"
},
"engines": {
"node": ">=18.0.0"
},
"author": "xavierScript",
"license": "MIT"
}