@q32/core 0.1.7 → 0.1.8
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 +12 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@q32/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "Shared TypeScript primitives for Q32 Cloudflare Worker projects.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -124,20 +124,28 @@
|
|
|
124
124
|
"README.md",
|
|
125
125
|
"LICENSE"
|
|
126
126
|
],
|
|
127
|
+
"peerDependencies": {
|
|
128
|
+
"kysely": ">=0.28 <0.30",
|
|
129
|
+
"kysely-postgres-js": "^3.0.0",
|
|
130
|
+
"postgres": "^3.4.0"
|
|
131
|
+
},
|
|
127
132
|
"devDependencies": {
|
|
128
133
|
"@cloudflare/workers-types": "^4.20260606.0",
|
|
129
134
|
"@vitest/coverage-v8": "^4.1.8",
|
|
135
|
+
"kysely": "^0.29.2",
|
|
136
|
+
"kysely-postgres-js": "^3.0.0",
|
|
137
|
+
"postgres": "^3.4.9",
|
|
130
138
|
"typescript": "^5.9.3",
|
|
131
139
|
"vitest": "^4.0.15"
|
|
132
140
|
},
|
|
141
|
+
"publishConfig": {
|
|
142
|
+
"access": "public"
|
|
143
|
+
},
|
|
133
144
|
"dependencies": {
|
|
134
145
|
"kysely": "^0.29.2",
|
|
135
146
|
"kysely-postgres-js": "^3.0.0",
|
|
136
147
|
"postgres": "^3.4.9"
|
|
137
148
|
},
|
|
138
|
-
"publishConfig": {
|
|
139
|
-
"access": "public"
|
|
140
|
-
},
|
|
141
149
|
"scripts": {
|
|
142
150
|
"build": "tsc -p tsconfig.json",
|
|
143
151
|
"test": "vitest run",
|