@modern-admin/adapter-drizzle 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +25 -0
- package/package.json +13 -3
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# @modern-admin/adapter-drizzle
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/@modern-admin/adapter-drizzle)
|
|
4
|
+
[](https://github.com/modern-admin/modern-admin/blob/main/LICENSE)
|
|
5
|
+
|
|
6
|
+
> Drizzle ORM adapter for Modern Admin — implements BaseDatabase/BaseResource on Drizzle schemas.
|
|
7
|
+
|
|
8
|
+
Part of [**Modern Admin**](https://github.com/modern-admin/modern-admin) — a universal, modern admin panel framework
|
|
9
|
+
built on NestJS + React 19, with Prisma/Drizzle adapters, Tailwind 4 UI, and
|
|
10
|
+
end-to-end Zod validation.
|
|
11
|
+
|
|
12
|
+
## Installation
|
|
13
|
+
|
|
14
|
+
```sh
|
|
15
|
+
bun add @modern-admin/adapter-drizzle
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Documentation
|
|
19
|
+
|
|
20
|
+
Setup guides, architecture, and usage examples live in the
|
|
21
|
+
[Modern Admin README](https://github.com/modern-admin/modern-admin#readme).
|
|
22
|
+
|
|
23
|
+
## License
|
|
24
|
+
|
|
25
|
+
[MIT](https://github.com/modern-admin/modern-admin/blob/main/LICENSE) © Modern Admin
|
package/package.json
CHANGED
|
@@ -1,7 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@modern-admin/adapter-drizzle",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Drizzle ORM adapter for Modern Admin — implements BaseDatabase/BaseResource on Drizzle schemas.",
|
|
5
|
+
"homepage": "https://github.com/modern-admin/modern-admin/tree/main/packages/adapter-drizzle#readme",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"modern-admin",
|
|
8
|
+
"admin",
|
|
9
|
+
"admin-panel",
|
|
10
|
+
"admin-dashboard",
|
|
11
|
+
"drizzle",
|
|
12
|
+
"orm",
|
|
13
|
+
"database"
|
|
14
|
+
],
|
|
5
15
|
"type": "module",
|
|
6
16
|
"license": "MIT",
|
|
7
17
|
"repository": {
|
|
@@ -34,10 +44,10 @@
|
|
|
34
44
|
}
|
|
35
45
|
},
|
|
36
46
|
"dependencies": {
|
|
37
|
-
"@modern-admin/core": "0.1.
|
|
47
|
+
"@modern-admin/core": "0.1.1"
|
|
38
48
|
},
|
|
39
49
|
"devDependencies": {
|
|
40
|
-
"@modern-admin/tsconfig": "0.1.
|
|
50
|
+
"@modern-admin/tsconfig": "0.1.1",
|
|
41
51
|
"@types/bun": "^1.3.13",
|
|
42
52
|
"drizzle-orm": "^0.45.2",
|
|
43
53
|
"typescript": "^6.0.3"
|