{ "name": "bchen-sqlite-migrate", "version": "0.1.0", "description": "Lightweight SQLite migration runner for better-sqlite3 — numbered SQL files, sha256 checksums, idempotent re-apply, genesis-stamping.", "license": "MIT", "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" }, "./cli": { "types": "./dist/cli.d.ts", "import": "./dist/cli.js" } }, "files": ["dist", "README.md", "LICENSE"], "engines": { "node": ">=20" }, "scripts": { "build": "tsc -p tsconfig.build.json", "test": "vitest run", "test:watch": "vitest", "typecheck": "tsc --noEmit" }, "peerDependencies": { "better-sqlite3": ">=11 <13" }, "devDependencies": { "@types/better-sqlite3": "^7.6.13", "@types/node": "^22", "better-sqlite3": "12.6.2", "typescript": "^5.5", "vitest": "^4.0.0" }, "repository": { "type": "git", "url": "git+https://gitea.bchen.dev/brendan/sqlite-migrate.git" }, "keywords": ["sqlite", "migration", "better-sqlite3", "schema-migrations"] }