introspectron 2.13.16 → 2.13.18
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/LICENSE +1 -1
- package/README.md +37 -37
- package/esm/gql.js +65 -8
- package/gql.js +65 -8
- package/package.json +7 -7
package/LICENSE
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
The MIT License (MIT)
|
|
2
2
|
|
|
3
3
|
Copyright (c) 2025 Dan Lynch <pyramation@gmail.com>
|
|
4
|
-
Copyright (c) 2025
|
|
4
|
+
Copyright (c) 2025 Constructive <developers@constructive.io>
|
|
5
5
|
Copyright (c) 2020-present, Interweb, Inc.
|
|
6
6
|
|
|
7
7
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
package/README.md
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
# introspectron
|
|
2
2
|
|
|
3
3
|
<p align="center" width="100%">
|
|
4
|
-
<img height="250" src="https://raw.githubusercontent.com/
|
|
4
|
+
<img height="250" src="https://raw.githubusercontent.com/constructive-io/constructive/refs/heads/main/assets/outline-logo.svg" />
|
|
5
5
|
</p>
|
|
6
6
|
|
|
7
7
|
<p align="center" width="100%">
|
|
8
|
-
<a href="https://github.com/
|
|
9
|
-
<img height="20" src="https://github.com/
|
|
8
|
+
<a href="https://github.com/constructive-io/constructive/actions/workflows/run-tests.yaml">
|
|
9
|
+
<img height="20" src="https://github.com/constructive-io/constructive/actions/workflows/run-tests.yaml/badge.svg" />
|
|
10
10
|
</a>
|
|
11
|
-
<a href="https://github.com/
|
|
11
|
+
<a href="https://github.com/constructive-io/constructive/blob/main/LICENSE"><img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg"/></a>
|
|
12
12
|
<a href="https://www.npmjs.com/package/introspectron"><img height="20" src="https://img.shields.io/github/package-json/v/launchql/launchql?filename=packages%2Fintrospectron%2Fpackage.json"/></a>
|
|
13
13
|
</p>
|
|
14
14
|
|
|
@@ -64,71 +64,71 @@ psql testdb -f ./seed.sql
|
|
|
64
64
|
|
|
65
65
|
## Education and Tutorials
|
|
66
66
|
|
|
67
|
-
1. 🚀 [Quickstart: Getting Up and Running](https://
|
|
67
|
+
1. 🚀 [Quickstart: Getting Up and Running](https://constructive.io/learn/quickstart)
|
|
68
68
|
Get started with modular databases in minutes. Install prerequisites and deploy your first module.
|
|
69
69
|
|
|
70
|
-
2. 📦 [Modular PostgreSQL Development with Database Packages](https://
|
|
70
|
+
2. 📦 [Modular PostgreSQL Development with Database Packages](https://constructive.io/learn/modular-postgres)
|
|
71
71
|
Learn to organize PostgreSQL projects with pgpm workspaces and reusable database modules.
|
|
72
72
|
|
|
73
|
-
3. ✏️ [Authoring Database Changes](https://
|
|
73
|
+
3. ✏️ [Authoring Database Changes](https://constructive.io/learn/authoring-database-changes)
|
|
74
74
|
Master the workflow for adding, organizing, and managing database changes with pgpm.
|
|
75
75
|
|
|
76
|
-
4. 🧪 [End-to-End PostgreSQL Testing with TypeScript](https://
|
|
76
|
+
4. 🧪 [End-to-End PostgreSQL Testing with TypeScript](https://constructive.io/learn/e2e-postgres-testing)
|
|
77
77
|
Master end-to-end PostgreSQL testing with ephemeral databases, RLS testing, and CI/CD automation.
|
|
78
78
|
|
|
79
|
-
5. ⚡ [Supabase Testing](https://
|
|
79
|
+
5. ⚡ [Supabase Testing](https://constructive.io/learn/supabase)
|
|
80
80
|
Use TypeScript-first tools to test Supabase projects with realistic RLS, policies, and auth contexts.
|
|
81
81
|
|
|
82
|
-
6. 💧 [Drizzle ORM Testing](https://
|
|
82
|
+
6. 💧 [Drizzle ORM Testing](https://constructive.io/learn/drizzle-testing)
|
|
83
83
|
Run full-stack tests with Drizzle ORM, including database setup, teardown, and RLS enforcement.
|
|
84
84
|
|
|
85
|
-
7. 🔧 [Troubleshooting](https://
|
|
85
|
+
7. 🔧 [Troubleshooting](https://constructive.io/learn/troubleshooting)
|
|
86
86
|
Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
87
87
|
|
|
88
|
-
## Related
|
|
88
|
+
## Related Constructive Tooling
|
|
89
89
|
|
|
90
90
|
### 🧪 Testing
|
|
91
91
|
|
|
92
|
-
* [
|
|
93
|
-
* [
|
|
94
|
-
* [
|
|
95
|
-
* [
|
|
92
|
+
* [pgsql-test](https://github.com/constructive-io/constructive/tree/main/packages/pgsql-test): **📊 Isolated testing environments** with per-test transaction rollbacks—ideal for integration tests, complex migrations, and RLS simulation.
|
|
93
|
+
* [supabase-test](https://github.com/constructive-io/constructive/tree/main/packages/supabase-test): **🧪 Supabase-native test harness** preconfigured for the local Supabase stack—per-test rollbacks, JWT/role context helpers, and CI/GitHub Actions ready.
|
|
94
|
+
* [graphile-test](https://github.com/constructive-io/constructive/tree/main/packages/graphile-test): **🔐 Authentication mocking** for Graphile-focused test helpers and emulating row-level security contexts.
|
|
95
|
+
* [pg-query-context](https://github.com/constructive-io/constructive/tree/main/packages/pg-query-context): **🔒 Session context injection** to add session-local context (e.g., `SET LOCAL`) into queries—ideal for setting `role`, `jwt.claims`, and other session settings.
|
|
96
96
|
|
|
97
97
|
### 🧠 Parsing & AST
|
|
98
98
|
|
|
99
|
-
* [
|
|
100
|
-
* [
|
|
101
|
-
* [
|
|
102
|
-
* [@pgsql/enums](https://
|
|
103
|
-
* [@pgsql/types](https://
|
|
104
|
-
* [@pgsql/utils](https://
|
|
105
|
-
* [
|
|
99
|
+
* [pgsql-parser](https://www.npmjs.com/package/pgsql-parser): **🔄 SQL conversion engine** that interprets and converts PostgreSQL syntax.
|
|
100
|
+
* [libpg-query-node](https://www.npmjs.com/package/libpg-query): **🌉 Node.js bindings** for `libpg_query`, converting SQL into parse trees.
|
|
101
|
+
* [pg-proto-parser](https://www.npmjs.com/package/pg-proto-parser): **📦 Protobuf parser** for parsing PostgreSQL Protocol Buffers definitions to generate TypeScript interfaces, utility functions, and JSON mappings for enums.
|
|
102
|
+
* [@pgsql/enums](https://www.npmjs.com/package/@pgsql/enums): **🏷️ TypeScript enums** for PostgreSQL AST for safe and ergonomic parsing logic.
|
|
103
|
+
* [@pgsql/types](https://www.npmjs.com/package/@pgsql/types): **📝 Type definitions** for PostgreSQL AST nodes in TypeScript.
|
|
104
|
+
* [@pgsql/utils](https://www.npmjs.com/package/@pgsql/utils): **🛠️ AST utilities** for constructing and transforming PostgreSQL syntax trees.
|
|
105
|
+
* [pg-ast](https://www.npmjs.com/package/pg-ast): **🔍 Low-level AST tools** and transformations for Postgres query structures.
|
|
106
106
|
|
|
107
107
|
### 🚀 API & Dev Tools
|
|
108
108
|
|
|
109
|
-
* [launchql/server](https://github.com/
|
|
110
|
-
* [launchql/explorer](https://github.com/
|
|
109
|
+
* [launchql/server](https://github.com/constructive-io/constructive/tree/main/packages/server): **⚡ Express-based API server** powered by PostGraphile to expose a secure, scalable GraphQL API over your Postgres database.
|
|
110
|
+
* [launchql/explorer](https://github.com/constructive-io/constructive/tree/main/packages/explorer): **🔎 Visual API explorer** with GraphiQL for browsing across all databases and schemas—useful for debugging, documentation, and API prototyping.
|
|
111
111
|
|
|
112
112
|
### 🔁 Streaming & Uploads
|
|
113
113
|
|
|
114
|
-
* [launchql/s3-streamer](https://github.com/
|
|
115
|
-
* [launchql/etag-hash](https://github.com/
|
|
116
|
-
* [launchql/etag-stream](https://github.com/
|
|
117
|
-
* [launchql/uuid-hash](https://github.com/
|
|
118
|
-
* [launchql/uuid-stream](https://github.com/
|
|
119
|
-
* [launchql/upload-names](https://github.com/
|
|
114
|
+
* [launchql/s3-streamer](https://github.com/constructive-io/constructive/tree/main/packages/s3-streamer): **📤 Direct S3 streaming** for large files with support for metadata injection and content validation.
|
|
115
|
+
* [launchql/etag-hash](https://github.com/constructive-io/constructive/tree/main/packages/etag-hash): **🏷️ S3-compatible ETags** created by streaming and hashing file uploads in chunks.
|
|
116
|
+
* [launchql/etag-stream](https://github.com/constructive-io/constructive/tree/main/packages/etag-stream): **🔄 ETag computation** via Node stream transformer during upload or transfer.
|
|
117
|
+
* [launchql/uuid-hash](https://github.com/constructive-io/constructive/tree/main/packages/uuid-hash): **🆔 Deterministic UUIDs** generated from hashed content, great for deduplication and asset referencing.
|
|
118
|
+
* [launchql/uuid-stream](https://github.com/constructive-io/constructive/tree/main/packages/uuid-stream): **🌊 Streaming UUID generation** based on piped file content—ideal for upload pipelines.
|
|
119
|
+
* [launchql/upload-names](https://github.com/constructive-io/constructive/tree/main/packages/upload-names): **📂 Collision-resistant filenames** utility for structured and unique file names for uploads.
|
|
120
120
|
|
|
121
121
|
### 🧰 CLI & Codegen
|
|
122
122
|
|
|
123
|
-
* [pgpm](https://github.com/
|
|
124
|
-
* [@launchql/cli](https://github.com/
|
|
125
|
-
* [launchql/launchql-gen](https://github.com/
|
|
126
|
-
* [@launchql/query-builder](https://github.com/
|
|
127
|
-
* [@launchql/query](https://github.com/
|
|
123
|
+
* [pgpm](https://github.com/constructive-io/constructive/tree/main/packages/pgpm): **🖥️ PostgreSQL Package Manager** for modular Postgres development. Works with database workspaces, scaffolding, migrations, seeding, and installing database packages.
|
|
124
|
+
* [@launchql/cli](https://github.com/constructive-io/constructive/tree/main/packages/cli): **🖥️ Command-line toolkit** for managing LaunchQL projects—supports database scaffolding, migrations, seeding, code generation, and automation.
|
|
125
|
+
* [launchql/launchql-gen](https://github.com/constructive-io/constructive/tree/main/packages/launchql-gen): **✨ Auto-generated GraphQL** mutations and queries dynamically built from introspected schema data.
|
|
126
|
+
* [@launchql/query-builder](https://github.com/constructive-io/constructive/tree/main/packages/query-builder): **🏗️ SQL constructor** providing a robust TypeScript-based query builder for dynamic generation of `SELECT`, `INSERT`, `UPDATE`, `DELETE`, and stored procedure calls—supports advanced SQL features like `JOIN`, `GROUP BY`, and schema-qualified queries.
|
|
127
|
+
* [@launchql/query](https://github.com/constructive-io/constructive/tree/main/packages/query): **🧩 Fluent GraphQL builder** for PostGraphile schemas. ⚡ Schema-aware via introspection, 🧩 composable and ergonomic for building deeply nested queries.
|
|
128
128
|
|
|
129
129
|
## Credits
|
|
130
130
|
|
|
131
|
-
🛠 Built by
|
|
131
|
+
🛠 Built by Constructive — if you like our tools, please checkout and contribute to [our github ⚛️](https://github.com/constructive-io)
|
|
132
132
|
|
|
133
133
|
|
|
134
134
|
## Disclaimer
|
package/esm/gql.js
CHANGED
|
@@ -156,7 +156,8 @@ export const parseGraphQuery = (introQuery) => {
|
|
|
156
156
|
return m;
|
|
157
157
|
}, {});
|
|
158
158
|
const queries = queriesRoot.fields.reduce((m, query) => {
|
|
159
|
-
|
|
159
|
+
const model = getObjectType(query.type);
|
|
160
|
+
if (model) {
|
|
160
161
|
if (isConnectionQuery(query)) {
|
|
161
162
|
m[query.name] = parseConnectionQuery(context, query, 1);
|
|
162
163
|
}
|
|
@@ -174,24 +175,59 @@ export const parseGraphQuery = (introQuery) => {
|
|
|
174
175
|
function parseSelectionObject(context, model, nesting) {
|
|
175
176
|
const { HASH } = context;
|
|
176
177
|
throwIfInvalidContext(context);
|
|
177
|
-
const selectionFields = HASH[model].fields
|
|
178
|
-
|
|
179
|
-
|
|
178
|
+
const selectionFields = HASH[model].fields
|
|
179
|
+
.filter((f) => !isPureObjectType(f.type))
|
|
180
|
+
.filter((f) => {
|
|
181
|
+
const objectType = getObjectType(f.type);
|
|
182
|
+
if (objectType && fieldHasRequiredArgs(f))
|
|
183
|
+
return false;
|
|
184
|
+
return true;
|
|
185
|
+
});
|
|
186
|
+
const mapped = selectionFields.map((f) => {
|
|
187
|
+
const objectType = getObjectType(f.type);
|
|
188
|
+
if (objectType) {
|
|
180
189
|
if (isConnectionQuery(f)) {
|
|
181
190
|
return { name: f.name, ...parseConnectionQuery(context, f, nesting - 1) };
|
|
182
191
|
}
|
|
183
|
-
|
|
184
|
-
return { name: f.name,
|
|
192
|
+
if (isListType(f.type)) {
|
|
193
|
+
return { name: f.name, selection: parseSelectionScalar(context, objectType) };
|
|
185
194
|
}
|
|
195
|
+
return { name: f.name, ...parseSingleQuery(context, f, nesting - 1) };
|
|
196
|
+
}
|
|
197
|
+
const baseKind = getBaseKind(f.type);
|
|
198
|
+
if (isListType(f.type)) {
|
|
199
|
+
if (baseKind === 'SCALAR' || baseKind === 'ENUM')
|
|
200
|
+
return f.name;
|
|
201
|
+
return null;
|
|
186
202
|
}
|
|
203
|
+
if (baseKind === 'UNION' || baseKind === 'INTERFACE')
|
|
204
|
+
return null;
|
|
187
205
|
return f.name;
|
|
188
206
|
});
|
|
207
|
+
return mapped.filter((x) => x != null);
|
|
189
208
|
}
|
|
190
209
|
function parseSelectionScalar(context, model) {
|
|
191
210
|
const { HASH } = context;
|
|
192
211
|
throwIfInvalidContext(context);
|
|
193
|
-
const selectionFields = HASH[model].fields.filter((f) =>
|
|
194
|
-
|
|
212
|
+
const selectionFields = HASH[model].fields.filter((f) => {
|
|
213
|
+
if (isPureObjectType(f.type))
|
|
214
|
+
return false;
|
|
215
|
+
if (isConnectionQuery(f))
|
|
216
|
+
return false;
|
|
217
|
+
const objectType = getObjectType(f.type);
|
|
218
|
+
if (objectType)
|
|
219
|
+
return false;
|
|
220
|
+
const baseKind = getBaseKind(f.type);
|
|
221
|
+
if (isListType(f.type) && !(baseKind === 'SCALAR' || baseKind === 'ENUM'))
|
|
222
|
+
return false;
|
|
223
|
+
if (baseKind === 'UNION' || baseKind === 'INTERFACE')
|
|
224
|
+
return false;
|
|
225
|
+
return true;
|
|
226
|
+
});
|
|
227
|
+
const names = selectionFields.map((f) => f.name);
|
|
228
|
+
if (names.length === 0)
|
|
229
|
+
return ['__typename'];
|
|
230
|
+
return names;
|
|
195
231
|
}
|
|
196
232
|
function isConnectionQuery(query) {
|
|
197
233
|
const objectType = getObjectType(query.type);
|
|
@@ -210,6 +246,27 @@ function getObjectType(type) {
|
|
|
210
246
|
return getObjectType(type.ofType);
|
|
211
247
|
return undefined;
|
|
212
248
|
}
|
|
249
|
+
function isListType(type) {
|
|
250
|
+
if (type.kind === 'LIST')
|
|
251
|
+
return true;
|
|
252
|
+
if (type.ofType)
|
|
253
|
+
return isListType(type.ofType);
|
|
254
|
+
return false;
|
|
255
|
+
}
|
|
256
|
+
function fieldHasRequiredArgs(field) {
|
|
257
|
+
for (const a of field.args) {
|
|
258
|
+
if (a.type && a.type.kind === 'NON_NULL' && (a.defaultValue === undefined || a.defaultValue === null)) {
|
|
259
|
+
return true;
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
return false;
|
|
263
|
+
}
|
|
264
|
+
function getBaseKind(type) {
|
|
265
|
+
let t = type;
|
|
266
|
+
while (t && t.ofType)
|
|
267
|
+
t = t.ofType;
|
|
268
|
+
return (t?.kind || type.kind);
|
|
269
|
+
}
|
|
213
270
|
function throwIfInvalidContext(context) {
|
|
214
271
|
const { HASH, getInputForQueries } = context;
|
|
215
272
|
if (!HASH || !getInputForQueries) {
|
package/gql.js
CHANGED
|
@@ -161,7 +161,8 @@ const parseGraphQuery = (introQuery) => {
|
|
|
161
161
|
return m;
|
|
162
162
|
}, {});
|
|
163
163
|
const queries = queriesRoot.fields.reduce((m, query) => {
|
|
164
|
-
|
|
164
|
+
const model = getObjectType(query.type);
|
|
165
|
+
if (model) {
|
|
165
166
|
if (isConnectionQuery(query)) {
|
|
166
167
|
m[query.name] = (0, exports.parseConnectionQuery)(context, query, 1);
|
|
167
168
|
}
|
|
@@ -180,24 +181,59 @@ exports.parseGraphQuery = parseGraphQuery;
|
|
|
180
181
|
function parseSelectionObject(context, model, nesting) {
|
|
181
182
|
const { HASH } = context;
|
|
182
183
|
throwIfInvalidContext(context);
|
|
183
|
-
const selectionFields = HASH[model].fields
|
|
184
|
-
|
|
185
|
-
|
|
184
|
+
const selectionFields = HASH[model].fields
|
|
185
|
+
.filter((f) => !isPureObjectType(f.type))
|
|
186
|
+
.filter((f) => {
|
|
187
|
+
const objectType = getObjectType(f.type);
|
|
188
|
+
if (objectType && fieldHasRequiredArgs(f))
|
|
189
|
+
return false;
|
|
190
|
+
return true;
|
|
191
|
+
});
|
|
192
|
+
const mapped = selectionFields.map((f) => {
|
|
193
|
+
const objectType = getObjectType(f.type);
|
|
194
|
+
if (objectType) {
|
|
186
195
|
if (isConnectionQuery(f)) {
|
|
187
196
|
return { name: f.name, ...(0, exports.parseConnectionQuery)(context, f, nesting - 1) };
|
|
188
197
|
}
|
|
189
|
-
|
|
190
|
-
return { name: f.name,
|
|
198
|
+
if (isListType(f.type)) {
|
|
199
|
+
return { name: f.name, selection: parseSelectionScalar(context, objectType) };
|
|
191
200
|
}
|
|
201
|
+
return { name: f.name, ...(0, exports.parseSingleQuery)(context, f, nesting - 1) };
|
|
202
|
+
}
|
|
203
|
+
const baseKind = getBaseKind(f.type);
|
|
204
|
+
if (isListType(f.type)) {
|
|
205
|
+
if (baseKind === 'SCALAR' || baseKind === 'ENUM')
|
|
206
|
+
return f.name;
|
|
207
|
+
return null;
|
|
192
208
|
}
|
|
209
|
+
if (baseKind === 'UNION' || baseKind === 'INTERFACE')
|
|
210
|
+
return null;
|
|
193
211
|
return f.name;
|
|
194
212
|
});
|
|
213
|
+
return mapped.filter((x) => x != null);
|
|
195
214
|
}
|
|
196
215
|
function parseSelectionScalar(context, model) {
|
|
197
216
|
const { HASH } = context;
|
|
198
217
|
throwIfInvalidContext(context);
|
|
199
|
-
const selectionFields = HASH[model].fields.filter((f) =>
|
|
200
|
-
|
|
218
|
+
const selectionFields = HASH[model].fields.filter((f) => {
|
|
219
|
+
if (isPureObjectType(f.type))
|
|
220
|
+
return false;
|
|
221
|
+
if (isConnectionQuery(f))
|
|
222
|
+
return false;
|
|
223
|
+
const objectType = getObjectType(f.type);
|
|
224
|
+
if (objectType)
|
|
225
|
+
return false;
|
|
226
|
+
const baseKind = getBaseKind(f.type);
|
|
227
|
+
if (isListType(f.type) && !(baseKind === 'SCALAR' || baseKind === 'ENUM'))
|
|
228
|
+
return false;
|
|
229
|
+
if (baseKind === 'UNION' || baseKind === 'INTERFACE')
|
|
230
|
+
return false;
|
|
231
|
+
return true;
|
|
232
|
+
});
|
|
233
|
+
const names = selectionFields.map((f) => f.name);
|
|
234
|
+
if (names.length === 0)
|
|
235
|
+
return ['__typename'];
|
|
236
|
+
return names;
|
|
201
237
|
}
|
|
202
238
|
function isConnectionQuery(query) {
|
|
203
239
|
const objectType = getObjectType(query.type);
|
|
@@ -216,6 +252,27 @@ function getObjectType(type) {
|
|
|
216
252
|
return getObjectType(type.ofType);
|
|
217
253
|
return undefined;
|
|
218
254
|
}
|
|
255
|
+
function isListType(type) {
|
|
256
|
+
if (type.kind === 'LIST')
|
|
257
|
+
return true;
|
|
258
|
+
if (type.ofType)
|
|
259
|
+
return isListType(type.ofType);
|
|
260
|
+
return false;
|
|
261
|
+
}
|
|
262
|
+
function fieldHasRequiredArgs(field) {
|
|
263
|
+
for (const a of field.args) {
|
|
264
|
+
if (a.type && a.type.kind === 'NON_NULL' && (a.defaultValue === undefined || a.defaultValue === null)) {
|
|
265
|
+
return true;
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
return false;
|
|
269
|
+
}
|
|
270
|
+
function getBaseKind(type) {
|
|
271
|
+
let t = type;
|
|
272
|
+
while (t && t.ofType)
|
|
273
|
+
t = t.ofType;
|
|
274
|
+
return (t?.kind || type.kind);
|
|
275
|
+
}
|
|
219
276
|
function throwIfInvalidContext(context) {
|
|
220
277
|
const { HASH, getInputForQueries } = context;
|
|
221
278
|
if (!HASH || !getInputForQueries) {
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "introspectron",
|
|
3
|
-
"version": "2.13.
|
|
3
|
+
"version": "2.13.18",
|
|
4
4
|
"description": "introspect your Postgres database and generate an SDK",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"module": "esm/index.js",
|
|
8
8
|
"types": "index.d.ts",
|
|
9
|
-
"homepage": "https://github.com/
|
|
9
|
+
"homepage": "https://github.com/constructive-io/constructive",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"publishConfig": {
|
|
12
12
|
"access": "public",
|
|
@@ -14,10 +14,10 @@
|
|
|
14
14
|
},
|
|
15
15
|
"repository": {
|
|
16
16
|
"type": "git",
|
|
17
|
-
"url": "https://github.com/
|
|
17
|
+
"url": "https://github.com/constructive-io/constructive"
|
|
18
18
|
},
|
|
19
19
|
"bugs": {
|
|
20
|
-
"url": "https://github.com/
|
|
20
|
+
"url": "https://github.com/constructive-io/constructive/issues"
|
|
21
21
|
},
|
|
22
22
|
"scripts": {
|
|
23
23
|
"clean": "makage clean",
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@jest/test-sequencer": "^30.2.0",
|
|
33
33
|
"@types/pg": "^8.15.2",
|
|
34
|
-
"launchql-test": "^2.8.
|
|
34
|
+
"launchql-test": "^2.8.15",
|
|
35
35
|
"makage": "^0.1.8",
|
|
36
|
-
"pgsql-test": "^2.14.
|
|
36
|
+
"pgsql-test": "^2.14.15"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"graphql": "15.10.1",
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"graphile",
|
|
49
49
|
"launchql"
|
|
50
50
|
],
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "5a0d7c7502624bd42a214f983fd7ab957e1fb3e3"
|
|
52
52
|
}
|