-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
30 lines (30 loc) · 787 Bytes
/
deno.json
File metadata and controls
30 lines (30 loc) · 787 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
{
"name": "@dafu/drizzle-admin",
"version": "0.1.5",
"description": "A server-rendered admin panel builder for Drizzle ORM with authentication, CRUD, and custom actions.",
"license": "MIT",
"exports": {
".": "./src/index.ts",
"./actions/csv": "./src/actions/csv.ts",
"./hono": "./src/adapters/hono.ts",
"./express": "./src/adapters/express.ts"
},
"imports": {
"@/": "./src/",
"hono": "npm:hono@^4",
"hono/cookie": "npm:hono@^4/cookie",
"drizzle-orm": "npm:drizzle-orm@^0.45",
"jose": "npm:jose@^5",
"bcryptjs": "npm:bcryptjs@^2",
"@hono/node-server": "npm:@hono/node-server@^1"
},
"publish": {
"include": [
"src/**/*.ts",
"!src/**/*.test.ts",
"deno.json",
"README.md",
"LICENSE"
]
}
}