This commit is contained in:
Benjamin Toby 2026-03-05 05:26:28 +01:00
parent 59e72942b8
commit 72f361b06b
7 changed files with 7 additions and 7 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/env node #!/usr/bin/env bun
/** /**
* # Declare Global Variables * # Declare Global Variables
*/ */

View File

@ -1,4 +1,4 @@
#!/usr/bin/env node #!/usr/bin/env bun
import { program } from "commander"; import { program } from "commander";
import schema from "./schema"; import schema from "./schema";
import typedef from "./typedef"; import typedef from "./typedef";

View File

@ -1,4 +1,4 @@
#!/usr/bin/env node #!/usr/bin/env bun
import type { BUN_SQLITE_DatabaseSchemaType } from "../../types"; import type { BUN_SQLITE_DatabaseSchemaType } from "../../types";
declare class SQLiteSchemaManager { declare class SQLiteSchemaManager {
private db; private db;

View File

@ -1,4 +1,4 @@
#!/usr/bin/env node #!/usr/bin/env bun
import { Database } from "bun:sqlite"; import { Database } from "bun:sqlite";
import _ from "lodash"; import _ from "lodash";
import DbClient from "."; import DbClient from ".";

View File

@ -1,6 +1,6 @@
{ {
"name": "@moduletrace/bun-sqlite", "name": "@moduletrace/bun-sqlite",
"version": "1.0.6", "version": "1.0.7",
"description": "SQLite manager for Bun", "description": "SQLite manager for Bun",
"author": "Benjamin Toby", "author": "Benjamin Toby",
"main": "dist/index.js", "main": "dist/index.js",

View File

@ -1,4 +1,4 @@
#!/usr/bin/env node #!/usr/bin/env bun
import { program } from "commander"; import { program } from "commander";
import schema from "./schema"; import schema from "./schema";

View File

@ -1,4 +1,4 @@
#!/usr/bin/env node #!/usr/bin/env bun
import { Database } from "bun:sqlite"; import { Database } from "bun:sqlite";
import _ from "lodash"; import _ from "lodash";