-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 733 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 733 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
{
"name": "oikonomos",
"version": "0.1.0",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"lint": "turbo run lint",
"contracts:build": "cd packages/contracts && forge build",
"contracts:test": "cd packages/contracts && forge test",
"contracts:deploy": "cd packages/contracts && forge script",
"register-agent": "tsx scripts/register-canonical-agent.ts",
"update-agent": "tsx scripts/update-agent-metadata.ts"
},
"devDependencies": {
"turbo": "^2.0.0",
"typescript": "^5.4.0"
},
"dependencies": {
"agent0-sdk": "^1.5.2",
"dotenv": "^17.2.3",
"tsx": "^4.21.0"
}
}