@prisma-idb/idb-client-generator 0.32.1 → 0.33.0
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 +3 -3
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
This library is a **Prisma generator** that creates a client with a similar syntax and behavior to the Prisma Client but is designed to operate with **IndexedDB** for local storage. It allows developers to interact with IndexedDB using a familiar Prisma-like API.
|
|
4
4
|
|
|
5
|
-
**[📖 Documentation](https://idb
|
|
5
|
+
**[📖 Documentation](https://prisma-idb.dev/) • [🚀 Live Demo](https://kanban.prisma-idb.dev/) • [📦 npm Package](https://www.npmjs.com/package/@prisma-idb/idb-client-generator) • [🏗️ Main Repository](https://github.com/prisma-idb/idb-client-generator)**
|
|
6
6
|
|
|
7
7
|
## ⚠️ Warning
|
|
8
8
|
|
|
@@ -135,8 +135,8 @@ idbClient.modelName.delete({
|
|
|
135
135
|
|
|
136
136
|
## Resources
|
|
137
137
|
|
|
138
|
-
- **[📖 Full Documentation](https://idb
|
|
139
|
-
- **[🚀 Kanban Example](https://
|
|
138
|
+
- **[📖 Full Documentation](https://prisma-idb.dev/)** - Complete API reference, sync guides, and schema requirements
|
|
139
|
+
- **[🚀 Kanban Example](https://kanban.prisma-idb.dev/)** - Live demonstration of the sync engine
|
|
140
140
|
- **[💻 Example Source Code](../../apps/pidb-kanban-example)** - Full working example with SvelteKit and sync workers
|
|
141
141
|
- **[🏗️ Main Repository](https://github.com/prisma-idb/idb-client-generator)** - Source code and issue tracking
|
|
142
142
|
- **[📦 npm Package](https://www.npmjs.com/package/@prisma-idb/idb-client-generator)** - Install from npm registry
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma-idb/idb-client-generator",
|
|
3
3
|
"description": "Generate types for idb from prisma schema",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.33.0",
|
|
5
5
|
"main": "dist/generator.js",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"bin": {
|
|
@@ -11,13 +11,13 @@
|
|
|
11
11
|
"node": ">=20.0.0"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@prisma/generator-helper": "^7.
|
|
14
|
+
"@prisma/generator-helper": "^7.5.0",
|
|
15
15
|
"code-block-writer": "^13.0.3",
|
|
16
16
|
"prettier": "^3.8.1"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@prisma/internals": "^7.
|
|
20
|
-
"@release-it/conventional-changelog": "^10.0.
|
|
19
|
+
"@prisma/internals": "^7.5.0",
|
|
20
|
+
"@release-it/conventional-changelog": "^10.0.6",
|
|
21
21
|
"@types/node": "^24.12.0",
|
|
22
22
|
"release-it": "^19.2.4",
|
|
23
23
|
"typescript": "^5.9.3"
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"optional": true
|
|
38
38
|
}
|
|
39
39
|
},
|
|
40
|
-
"homepage": "https://
|
|
40
|
+
"homepage": "https://prisma-idb.dev/",
|
|
41
41
|
"repository": {
|
|
42
42
|
"type": "git",
|
|
43
43
|
"url": "git+https://github.com/prisma-idb/idb-client-generator.git"
|