@smithy-hono/adapter-postgres 0.2.2 → 0.2.5
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 +11 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smithy-hono/adapter-postgres",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.5",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Postgres-backed DataStore<T> for @smithy-hono/data-core (Plan 13 D7) — the recommended durable store of record for the Node deployment. A JSONB value column with versioned CAS, server-side WHERE/COUNT filtering on any field, opaque-cursor pagination, and soft-delete, all behind a narrow structural client port — no pg SDK at runtime (ARCH-01).",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -24,10 +24,11 @@
|
|
|
24
24
|
"test": "vitest run",
|
|
25
25
|
"test:ci": "vitest run --exclude '**/live.*.test.ts'",
|
|
26
26
|
"test:watch": "vitest",
|
|
27
|
-
"lint": "eslint src"
|
|
27
|
+
"lint": "eslint src",
|
|
28
|
+
"typecheck:test": "tsc -p tsconfig.json --noEmit"
|
|
28
29
|
},
|
|
29
30
|
"peerDependencies": {
|
|
30
|
-
"@smithy-hono/data-core": "^0.2.
|
|
31
|
+
"@smithy-hono/data-core": "^0.2.5",
|
|
31
32
|
"pg": "^8"
|
|
32
33
|
},
|
|
33
34
|
"peerDependenciesMeta": {
|
|
@@ -36,7 +37,7 @@
|
|
|
36
37
|
}
|
|
37
38
|
},
|
|
38
39
|
"devDependencies": {
|
|
39
|
-
"@smithy-hono/data-core": "^0.2.
|
|
40
|
+
"@smithy-hono/data-core": "^0.2.5",
|
|
40
41
|
"@types/pg": "^8",
|
|
41
42
|
"@typescript-eslint/parser": "^8.0.0",
|
|
42
43
|
"eslint": "^9.0.0",
|
|
@@ -44,8 +45,13 @@
|
|
|
44
45
|
"typescript": "^5.4.0",
|
|
45
46
|
"vitest": "^2.0.0"
|
|
46
47
|
},
|
|
47
|
-
"optionalDependencies": {},
|
|
48
48
|
"//optionalDevDependencies": {
|
|
49
49
|
"pg": "The node-postgres driver. Used ONLY by the gated live test (src/live.postgres.dataStore.test.ts) via dynamic import — the runtime source codes against the structural PgClientLike, never `import 'pg'` (ARCH-01). @types/pg is likewise live-test-only and must NOT leak into the src build (tsconfig types:[])."
|
|
50
|
+
},
|
|
51
|
+
"license": "Apache-2.0",
|
|
52
|
+
"repository": {
|
|
53
|
+
"type": "git",
|
|
54
|
+
"url": "git+https://github.com/MYoung25/smithy-hono.git",
|
|
55
|
+
"directory": "packages/adapter-postgres"
|
|
50
56
|
}
|
|
51
57
|
}
|