-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1019 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1019 Bytes
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
{
"type": "module",
"private": true,
"workspaces": [
".commands",
"projects/*",
"packages/*"
],
"module": "index.ts",
"scripts": {
"test": "vitest",
"lint": "oxlint --fix",
"co": "bun run ./packages/cookbook/cookbook.ts prepare && bun run ./packages/cookbook/cookbook.ts"
},
"trustedDependencies": [],
"dependencies": {
"@electric-sql/pglite": "^0.3.0",
"@hattip/adapter-node": "^0.0.49",
"@hono/node-server": "^1.13.8",
"@ryoppippi/unplugin-typia": "^2.6.5",
"@types/fs-extra": "^11.0.4",
"@types/node": "^25.2.1",
"compressing": "^1.10.1",
"drizzle-kit": "^0.31.1",
"drizzle-orm": "^0.43.1",
"fs-extra": "^11.2.0",
"hono": "^4.7.5",
"milkid": "^3.0.0",
"typia": "^7.6.4",
"vite-node": "^3.0.8",
"vitest": "^3.2.4"
},
"devDependencies": {
"oxlint": "^1.13.0",
"typescript": "^5.9.3"
}
}