-
Notifications
You must be signed in to change notification settings - Fork 100
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.13 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.13 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
{
"name": "@examples/issuer",
"version": "0.0.1",
"private": true,
"homepage": "https://github.com/agentcommercekit/ack#readme",
"bugs": "https://github.com/agentcommercekit/ack/issues",
"license": "MIT",
"author": {
"name": "Catena Labs",
"url": "https://catenalabs.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agentcommercekit/ack.git",
"directory": "examples/issuer"
},
"type": "module",
"main": "./src/index.ts",
"scripts": {
"check:types": "tsc --noEmit",
"clean": "git clean -xdf .turbo",
"db:generate": "drizzle-kit generate",
"dev": "dotenv -e .env -- tsx watch ./bin/start-server.ts",
"setup": "./bin/setup",
"test": "vitest"
},
"dependencies": {
"@hono/node-server": "catalog:",
"@libsql/client": "0.15.15",
"@repo/api-utils": "workspace:*",
"agentcommercekit": "workspace:*",
"bit-buffers": "catalog:",
"drizzle-orm": "0.45.2",
"hono": "catalog:",
"valibot": "catalog:"
},
"devDependencies": {
"@repo/typescript-config": "workspace:*",
"drizzle-kit": "0.31.9",
"vite-tsconfig-paths": "5.1.4"
}
}