-
Notifications
You must be signed in to change notification settings - Fork 100
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.16 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.16 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
{
"name": "@examples/verifier",
"version": "0.0.1",
"private": true,
"homepage": "https://github.com/agentcommercekit/ack#readme",
"bugs": "https://github.com/agentcommercekit/ack/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/agentcommercekit/ack.git",
"directory": "examples/verifier"
},
"license": "MIT",
"author": {
"name": "Catena Labs",
"url": "https://catenalabs.com"
},
"type": "module",
"main": "./src/index.ts",
"scripts": {
"check:types": "tsc --noEmit",
"clean": "git clean -xdf .turbo",
"dev": "dotenv -e .env -- tsx watch ./bin/serve.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"setup": "./bin/setup",
"test": "vitest"
},
"dependencies": {
"@hono/node-server": "^1.14.2",
"@hono/valibot-validator": "^0.5.2",
"@repo/api-utils": "workspace:*",
"agentcommercekit": "workspace:*",
"hono": "^4.9.7",
"valibot": "^1.1.0"
},
"devDependencies": {
"@repo/eslint-config": "workspace:^",
"@repo/typescript-config": "workspace:*",
"dotenv-cli": "^8.0.0",
"eslint": "^9.27.0",
"tsx": "^4.19.4",
"vitest": "^3.2.4"
}
}