-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 1.31 KB
/
package.json
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
36
37
38
39
40
41
{
"name": "zkrail",
"version": "0.0.1",
"private": true,
"scripts": {
"account": "pnpm --filter @zkrail/contracts account",
"account:generate": "pnpm --filter @zkrail/contracts account:generate",
"account:import": "pnpm --filter @zkrail/contracts account:import",
"chain": "pnpm --filter @zkrail/contracts chain",
"compile": "pnpm --filter @zkrail/contracts compile",
"deploy": "pnpm --filter @zkrail/contracts deploy",
"deploy:verify": "pnpm --filter @zkrail/contracts deploy:verify",
"flatten": "pnpm --filter @zkrail/contracts flatten",
"fork": "pnpm --filter @zkrail/contracts fork",
"format": "pnpm -r format",
"lint": "pnpm -r lint",
"test": "pnpm --filter @zkrail/contracts test",
"verify": "pnpm --filter @zkrail/contracts verify",
"web:dev": "pnpm --filter @zkrail/web dev",
"web:build": "pnpm --filter @zkrail/web build"
},
"devDependencies": {
"husky": "^8.0.3",
"lint-staged": "^13.2.2"
},
"pnpmConfig": {
"workspaceDir": "packages"
},
"engines": {
"node": ">=18.18.0",
"pnpm": ">=8.0.0"
},
"dependencies": {
"@coinbase/cdp-agentkit-core": "^0.0.6",
"@coinbase/cdp-langchain": "^0.0.7",
"@langchain/langgraph": "^0.2.27",
"@langchain/openai": "^0.3.14",
"express": "^4.21.2",
"zod": "^3.23.8"
}
}