-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 741 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 741 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
{
"name": "solagent-vault",
"version": "0.1.0",
"description": "Programmable spending policies for AI Agents on Solana",
"type": "commonjs",
"resolutions": {
"yargs": "^17.7.2"
},
"main": "index.js",
"scripts": {
"test": "anchor test",
"simulate": "ts-node scripts/simulate-agent.ts",
"agent": "ts-node scripts/local-llm-agent.ts"
},
"dependencies": {
"@anchor-lang/core": "^1.0.2",
"@solana/spl-token": "^0.4.8",
"@solana/web3.js": "^1.95.3"
},
"devDependencies": {
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.8",
"@types/node": "^22.7.4",
"chai": "^6.2.2",
"mocha": "^10.7.3",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
}
}