Skip to main content
Module

x/sqlite3/deno.json

The fastest and correct module for SQLite3 in Deno.
Latest
File
{ "name": "@db/sqlite", "version": "0.11.1", "github": "https://github.com/denodrivers/sqlite3",
"exports": "./mod.ts",
"exclude": [ "sqlite", "scripts" ],
"tasks": { "test": "deno test --unstable-ffi -A test/test.ts", "build": "deno run -A scripts/build.ts", "bench-deno": "deno run -A --unstable-ffi bench/bench_deno.js 50 1000000", "bench-deno-ffi": "deno run -A --unstable-ffi bench/bench_deno_ffi.js 50 1000000", "bench-deno-wasm": "deno run -A --unstable-ffi bench/bench_deno_wasm.js 50 1000000", "bench-node": "node bench/bench_node.js 50 1000000", "bench-bun": "bun run bench/bench_bun.js 50 1000000", "bench-bun-ffi": "bun run bench/bench_bun_ffi.js 50 1000000", "bench-c": "./bench/bench 50 1000000", "bench-python": "python ./bench/bench_python.py", "bench:northwind": "deno bench -A --unstable-ffi bench/northwind/deno.js", "bench-wasm:northwind": "deno run -A --unstable-ffi bench/northwind/deno_wasm.js", "bench-node:northwind": "node bench/northwind/node.mjs", "bench-bun:northwind": "bun run bench/northwind/bun.js" },
"fmt": { "exclude": [ "sqlite" ] },
"lint": { "rules": { "exclude": [ "camelcase", "no-explicit-any" ], "include": [ "explicit-function-return-type", "eqeqeq", "explicit-module-boundary-types" ] } }}