generated from HashWarlock/ai-agent-contract-tools
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.2 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
42
43
44
45
46
{
"name": "ai-agent-viem-template",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "tsup --config tsup.config.ts",
"start": "docker run --rm --name wapo -p 8000:80 -v $(pwd)/dist:/home/wapo phalanetwork/wapo-devserver:latest",
"watch": "npm-watch",
"dev": "concurrently \"npm:watch\" \"npm:start\"",
"test": "vitest --testTimeout=60000",
"ci": "npm run build && vitest --coverage --run",
"publish-agent": "npm run build && tsx scripts/publish.ts",
"set-secrets": "tsx scripts/setSecrets.ts"
},
"watch": {
"build": {
"patterns": [
"src"
],
"extensions": "ts",
"quiet": false
}
},
"author": "Phala Network",
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "^22.1.0",
"@vitest/coverage-v8": "^2.0.5",
"concurrently": "^9.0.1",
"dotenv": "^16.4.5",
"npm-watch": "^0.13.0",
"thirdweb": "^5.32.3",
"tsup": "^8.2.4",
"tsx": "^4.7.1",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"dependencies": {
"@hono/zod-validator": "^0.2.2",
"@phala/wapo-env": "^0.9.4",
"superjson": "^2.2.1",
"hono": "4.5.6",
"viem": "^2.19.9"
}
}