@crvouga/postgres-mem 1.0.0 → 1.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crvouga/postgres-mem",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "Pure TypeScript in-memory PostgreSQL implementation with zero WASM/native dependencies",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -88,7 +88,8 @@
88
88
  "npm:seed": "bun run scripts/seed-npm.ts",
89
89
  "gh": "open https://github.com/crvouga/postgres-mem/actions",
90
90
  "example:react-vite": "cd examples/react-vite && bun install && bun run dev",
91
- "fc": "clear && bun format && bun ci:local"
91
+ "fc": "clear && bun format && bun ci:local",
92
+ "test:postgres-native": "bun run scripts/run-postgres-native-tests.ts"
92
93
  },
93
94
  "devDependencies": {
94
95
  "@arethetypeswrong/cli": "^0.18.5",
@@ -101,10 +102,13 @@
101
102
  "@semantic-release/npm": "^13.1.5",
102
103
  "@semantic-release/release-notes-generator": "^14.1.1",
103
104
  "@types/bun": "latest",
105
+ "@types/pg": "^8.23.1",
104
106
  "conventional-changelog-conventionalcommits": "9.3.1",
107
+ "embedded-postgres": "18.3.0-beta.17",
105
108
  "esbuild": "^0.28.2",
106
109
  "fast-check": "^4.1.1",
107
110
  "husky": "^9.1.7",
111
+ "pg": "^8.23.0",
108
112
  "publint": "^0.3.23",
109
113
  "semantic-release": "^25.0.9",
110
114
  "typescript": "^5.8.3"
@@ -120,5 +124,15 @@
120
124
  "in-memory",
121
125
  "database",
122
126
  "sql"
127
+ ],
128
+ "trustedDependencies": [
129
+ "@embedded-postgres/darwin-arm64",
130
+ "@embedded-postgres/darwin-x64",
131
+ "@embedded-postgres/linux-arm",
132
+ "@embedded-postgres/linux-arm64",
133
+ "@embedded-postgres/linux-ia32",
134
+ "@embedded-postgres/linux-ppc64",
135
+ "@embedded-postgres/linux-x64",
136
+ "@embedded-postgres/windows-x64"
123
137
  ]
124
138
  }