-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.14 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.14 KB
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
47
48
{
"name": "agent-bond-validator",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc -p tsconfig.build.json",
"start": "node dist/index.js",
"lint": "eslint .",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"check": "npm run lint && npm run typecheck && npm run test"
},
"keywords": [
"validator",
"erc-8004",
"agent-bonds"
],
"author": "Vaultum",
"license": "MIT",
"description": "Agent Bonds validator service",
"engines": {
"node": ">=20"
},
"dependencies": {
"@aws-sdk/client-kms": "^3.999.0",
"@noble/curves": "^2.0.1",
"fastify": "^5.7.4",
"jose": "^6.1.3",
"pg": "^8.19.0",
"pino": "^10.3.1",
"viem": "^2.46.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.3.2",
"@types/pg": "^8.16.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^10.0.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}