Update deno.json imports

This commit is contained in:
Alex Gleason 2024-04-19 21:08:13 -05:00
parent 9ccf6bbea0
commit 80e554a5c9
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
2 changed files with 2 additions and 3 deletions

View File

@ -16,8 +16,7 @@
"@nostrify/nostrify": "jsr:@nostrify/nostrify@^0.9.7",
"~/fixtures/": "./fixtures/",
"kysely": "npm:kysely@^0.26.3",
"pg": "npm:pg@^8.11.5",
"pg-pool": "npm:pg-pool@^3.6.2"
"kysely_deno_postgres": "https://deno.land/x/kysely_deno_postgres@v0.4.0/mod.ts"
},
"lint": {
"include": ["src/", "scripts/"],

View File

@ -1,7 +1,7 @@
import { Kysely, PostgresAdapter, PostgresIntrospector, PostgresQueryCompiler } from 'kysely';
import { PostgreSQLDriver } from 'kysely_deno_postgres';
import { DittoTables } from '@/db/DittoTables.ts';
import { PostgreSQLDriver } from 'https://deno.land/x/kysely_deno_postgres@v0.4.0/mod.ts';
export class DittoPostgres {
static db: Kysely<DittoTables> | undefined;