@grackle-ai/database 0.73.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 +34 -0
- package/dist/credential-providers.d.ts +41 -0
- package/dist/credential-providers.d.ts.map +1 -0
- package/dist/credential-providers.js +97 -0
- package/dist/credential-providers.js.map +1 -0
- package/dist/crypto.d.ts +5 -0
- package/dist/crypto.d.ts.map +1 -0
- package/dist/crypto.js +75 -0
- package/dist/crypto.js.map +1 -0
- package/dist/db-seed.d.ts +16 -0
- package/dist/db-seed.d.ts.map +1 -0
- package/dist/db-seed.js +176 -0
- package/dist/db-seed.js.map +1 -0
- package/dist/db.d.ts +43 -0
- package/dist/db.d.ts.map +1 -0
- package/dist/db.js +478 -0
- package/dist/db.js.map +1 -0
- package/dist/env-registry.d.ts +29 -0
- package/dist/env-registry.d.ts.map +1 -0
- package/dist/env-registry.js +78 -0
- package/dist/env-registry.js.map +1 -0
- package/dist/event-store.d.ts +19 -0
- package/dist/event-store.d.ts.map +1 -0
- package/dist/event-store.js +16 -0
- package/dist/event-store.js.map +1 -0
- package/dist/finding-store.d.ts +7 -0
- package/dist/finding-store.d.ts.map +1 -0
- package/dist/finding-store.js +45 -0
- package/dist/finding-store.js.map +1 -0
- package/dist/index.d.ts +32 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +31 -0
- package/dist/index.js.map +1 -0
- package/dist/json-helpers.d.ts +7 -0
- package/dist/json-helpers.d.ts.map +1 -0
- package/dist/json-helpers.js +22 -0
- package/dist/json-helpers.js.map +1 -0
- package/dist/paths.d.ts +7 -0
- package/dist/paths.d.ts.map +1 -0
- package/dist/paths.js +12 -0
- package/dist/paths.js.map +1 -0
- package/dist/persona-store.d.ts +15 -0
- package/dist/persona-store.d.ts.map +1 -0
- package/dist/persona-store.js +57 -0
- package/dist/persona-store.js.map +1 -0
- package/dist/schema.d.ts +1784 -0
- package/dist/schema.d.ts.map +1 -0
- package/dist/schema.js +152 -0
- package/dist/schema.js.map +1 -0
- package/dist/session-store.d.ts +57 -0
- package/dist/session-store.d.ts.map +1 -0
- package/dist/session-store.js +204 -0
- package/dist/session-store.js.map +1 -0
- package/dist/settings-store.d.ts +14 -0
- package/dist/settings-store.d.ts.map +1 -0
- package/dist/settings-store.js +30 -0
- package/dist/settings-store.js.map +1 -0
- package/dist/task-store.d.ts +71 -0
- package/dist/task-store.d.ts.map +1 -0
- package/dist/task-store.js +301 -0
- package/dist/task-store.js.map +1 -0
- package/dist/test-db.d.ts +13 -0
- package/dist/test-db.d.ts.map +1 -0
- package/dist/test-db.js +14 -0
- package/dist/test-db.js.map +1 -0
- package/dist/token-store.d.ts +25 -0
- package/dist/token-store.d.ts.map +1 -0
- package/dist/token-store.js +58 -0
- package/dist/token-store.js.map +1 -0
- package/dist/utils/slugify.d.ts +20 -0
- package/dist/utils/slugify.d.ts.map +1 -0
- package/dist/utils/slugify.js +22 -0
- package/dist/utils/slugify.js.map +1 -0
- package/dist/workspace-store.d.ts +29 -0
- package/dist/workspace-store.d.ts.map +1 -0
- package/dist/workspace-store.js +74 -0
- package/dist/workspace-store.js.map +1 -0
- package/package.json +48 -0
package/package.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@grackle-ai/database",
|
|
3
|
+
"version": "0.73.0",
|
|
4
|
+
"description": "SQLite persistence layer for Grackle — schema, stores, and migrations",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/nick-pape/grackle.git",
|
|
9
|
+
"directory": "packages/database"
|
|
10
|
+
},
|
|
11
|
+
"keywords": [
|
|
12
|
+
"grackle",
|
|
13
|
+
"sqlite",
|
|
14
|
+
"database",
|
|
15
|
+
"drizzle-orm"
|
|
16
|
+
],
|
|
17
|
+
"engines": {
|
|
18
|
+
"node": ">=22.0.0"
|
|
19
|
+
},
|
|
20
|
+
"type": "module",
|
|
21
|
+
"main": "dist/index.js",
|
|
22
|
+
"types": "dist/index.d.ts",
|
|
23
|
+
"files": [
|
|
24
|
+
"dist/"
|
|
25
|
+
],
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"@bufbuild/protobuf": "^2.5.0",
|
|
28
|
+
"better-sqlite3": "^11.0.0",
|
|
29
|
+
"drizzle-orm": "^0.38.0",
|
|
30
|
+
"uuid": "^11.0.0",
|
|
31
|
+
"@grackle-ai/common": "0.73.0"
|
|
32
|
+
},
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"@rushstack/heft": "1.2.7",
|
|
35
|
+
"@types/better-sqlite3": "^7.6.0",
|
|
36
|
+
"@types/node": "^22.0.0",
|
|
37
|
+
"@types/uuid": "^10.0.0",
|
|
38
|
+
"vitest": "^3.1.1",
|
|
39
|
+
"@grackle-ai/heft-rig": "0.0.1"
|
|
40
|
+
},
|
|
41
|
+
"scripts": {
|
|
42
|
+
"build": "heft build --clean",
|
|
43
|
+
"test": "vitest run",
|
|
44
|
+
"clean": "heft clean",
|
|
45
|
+
"_phase:build": "heft run --only build -- --clean",
|
|
46
|
+
"_phase:test": "vitest run"
|
|
47
|
+
}
|
|
48
|
+
}
|