{
    "name": "@libsql/sqlite3",
    "version": "0.3.1",
    "keywords": [
        "libsql",
        "database",
        "sqlite",
        "serverless",
        "vercel",
        "netlify",
        "lambda"
    ],
    "description": "node-sqlite3-compatible API for libSQL",
    "repository": {
        "type": "git",
        "url": "github:libsql/libsql-node-sqlite3"
    },
    "authors": [
        "Jan Špaček <honza@chiselstrike.com>",
        "Pekka Enberg <penberg@chiselstrike.com>"
    ],
    "license": "MIT",

    "type": "commonjs",
    "main": "lib/index.js",
    "types": "lib/index.d.ts",
    "files": [
        "lib/**"
    ],

    "scripts": {
        "clean": "rm -rf ./lib ./*.tsbuildinfo",
        "prepublishOnly": "npm run clean-build",
        "build": "tsc && cp src/index.d.ts lib/index.d.ts",
        "clean-build": "npm run clean && npm run build",
        "typecheck": "tsc --noEmit",
        "test": "jest --runInBand"
    },

    "dependencies": {
        "@libsql/hrana-client": "^0.4.1"
    },
    "devDependencies": {
        "@types/jest": "^29.2.5",
        "jest": "^29.3.1",
        "knex": "^2.4.2",
        "sqlite3": "^5.1.5",
        "ts-jest": "^29.0.5",
        "typescript": "^4.9.4"
    }
}
