@eidentic/postgres 0.1.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/package.json ADDED
@@ -0,0 +1,68 @@
1
+ {
2
+ "name": "@eidentic/postgres",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "license": "Apache-2.0",
6
+ "publishConfig": {
7
+ "access": "public"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/eidentic/eidentic.git",
12
+ "directory": "packages/postgres"
13
+ },
14
+ "main": "./dist/index.cjs",
15
+ "module": "./dist/index.js",
16
+ "types": "./dist/index.d.ts",
17
+ "exports": {
18
+ ".": {
19
+ "types": "./dist/index.d.ts",
20
+ "import": "./dist/index.js",
21
+ "require": "./dist/index.cjs"
22
+ }
23
+ },
24
+ "sideEffects": false,
25
+ "files": [
26
+ "dist",
27
+ "LICENSE",
28
+ "README.md"
29
+ ],
30
+ "dependencies": {
31
+ "@eidentic/types": "0.1.0"
32
+ },
33
+ "peerDependencies": {
34
+ "pg": ">=8"
35
+ },
36
+ "peerDependenciesMeta": {
37
+ "pg": {
38
+ "optional": true
39
+ }
40
+ },
41
+ "devDependencies": {
42
+ "@electric-sql/pglite": "^0.4.6",
43
+ "pg": "^8.21.0",
44
+ "@types/pg": "^8.11.0"
45
+ },
46
+ "description": "PostgreSQL store adapter for Eidentic — durable agent memory, sessions, facts, and durable-execution state over pg / pglite.",
47
+ "keywords": [
48
+ "ai",
49
+ "agents",
50
+ "typescript",
51
+ "eidentic",
52
+ "postgres",
53
+ "store",
54
+ "memory",
55
+ "durable"
56
+ ],
57
+ "homepage": "https://github.com/eidentic/eidentic#readme",
58
+ "bugs": {
59
+ "url": "https://github.com/eidentic/eidentic/issues"
60
+ },
61
+ "engines": {
62
+ "node": ">=22"
63
+ },
64
+ "scripts": {
65
+ "build": "tsup src/index.ts --format esm,cjs --dts --clean",
66
+ "typecheck": "tsc --noEmit"
67
+ }
68
+ }