@trycompai/db 1.3.20-canary.0 → 1.3.20

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.
Files changed (2) hide show
  1. package/README.md +28 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,28 @@
1
+ # @trycompai/db
2
+
3
+ Database package for Comp AI.
4
+
5
+ ## What’s included
6
+
7
+ - Prisma schema: `dist/schema.prisma`
8
+ - Built output: `dist/`
9
+ - Postinstall helper binary: `comp-prisma-postinstall`
10
+
11
+ ## Install
12
+
13
+ ```bash
14
+ bun add @trycompai/db
15
+ ```
16
+
17
+ ## Usage
18
+
19
+ ```ts
20
+ import { db } from '@trycompai/db';
21
+ ```
22
+
23
+ ## Notes
24
+
25
+ - Publishing runs a build automatically via `prepublishOnly`.
26
+ - See `INTEGRATION_GUIDE.md` for integration details.
27
+
28
+
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@trycompai/db",
3
3
  "description": "Database package with Prisma client and schema for Comp AI",
4
- "version": "1.3.20-canary.0",
4
+ "version": "1.3.20",
5
5
  "dependencies": {
6
6
  "@prisma/client": "^6.13.0",
7
7
  "dotenv": "^16.4.5",