-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1019 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1019 Bytes
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
{
"name": "agentvault",
"version": "0.1.0",
"private": true,
"description": "Your Personal AI Agent Wallet on Solana",
"author": "CloudWeaver",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cloudweaver/agentvault.git"
},
"scripts": {
"build": "pnpm -r build",
"dev": "pnpm -r --parallel dev",
"test": "pnpm -r test",
"test:integration": "anchor test",
"lint": "pnpm -r lint",
"format": "prettier --write \"**/*.{ts,tsx,js,json,md}\"",
"clean": "pnpm -r clean && rm -rf node_modules",
"deploy:devnet": "bash scripts/deploy-devnet.sh",
"deploy:mainnet": "echo 'Mainnet deployment not yet configured'",
"setup:vault": "tsx scripts/setup-test-vault.ts",
"generate:types": "bash scripts/generate-types.sh"
},
"devDependencies": {
"@types/node": "^20.14.0",
"prettier": "^3.3.0",
"typescript": "^5.5.0"
},
"packageManager": "pnpm@9.1.0",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
}
}