84 lines
2.2 KiB
JSON
84 lines
2.2 KiB
JSON
{
|
|
"name": "libsql",
|
|
"version": "0.4.4",
|
|
"description": "A better-sqlite3 compatible API for libSQL that supports Bun, Deno, and Node",
|
|
"os": [
|
|
"darwin",
|
|
"linux",
|
|
"win32"
|
|
],
|
|
"cpu": [
|
|
"x64",
|
|
"arm64",
|
|
"wasm32"
|
|
],
|
|
"main": "index.js",
|
|
"types": "types/index.d.ts",
|
|
"files": [
|
|
"index.js",
|
|
"sqlite-error.js",
|
|
"promise.js",
|
|
"types/index.d.ts",
|
|
"types/promise.d.ts"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./types/index.d.ts",
|
|
"default": "./index.js"
|
|
},
|
|
"./promise": "./promise.js"
|
|
},
|
|
"scripts": {
|
|
"test": "cargo test",
|
|
"debug": "cargo build --message-format=json | npm exec neon dist",
|
|
"build": "npx tsc && cargo build --message-format=json --release | npm exec neon dist -- --name libsql-js",
|
|
"cross": "cross build --message-format=json --release | npm exec neon dist -- --name libsql-js -m /target",
|
|
"pack-build": "neon pack-build",
|
|
"prepack": "neon install-builds",
|
|
"postversion": "git push --follow-tags"
|
|
},
|
|
"author": "Pekka Enberg <penberg@iki.fi>",
|
|
"license": "MIT",
|
|
"neon": {
|
|
"type": "source",
|
|
"org": "@libsql",
|
|
"targets": {
|
|
"darwin-arm64": "aarch64-apple-darwin",
|
|
"linux-arm64-gnu": "aarch64-unknown-linux-gnu",
|
|
"linux-arm64-musl": "aarch64-unknown-linux-musl",
|
|
"darwin-x64": "x86_64-apple-darwin",
|
|
"win32-x64-msvc": "x86_64-pc-windows-msvc",
|
|
"linux-x64-gnu": "x86_64-unknown-linux-gnu",
|
|
"linux-x64-musl": "x86_64-unknown-linux-musl"
|
|
}
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/tursodatabase/libsql-js.git"
|
|
},
|
|
"keywords": [
|
|
"libsql"
|
|
],
|
|
"bugs": {
|
|
"url": "https://github.com/tursodatabase/libsql-js/issues"
|
|
},
|
|
"homepage": "https://github.com/tursodatabase/libsql-js",
|
|
"devDependencies": {
|
|
"@neon-rs/cli": "^0.0.165",
|
|
"typescript": "^5.4.5"
|
|
},
|
|
"dependencies": {
|
|
"@neon-rs/load": "^0.0.4",
|
|
"detect-libc": "2.0.2"
|
|
},
|
|
"optionalDependencies": {
|
|
"@libsql/darwin-arm64": "0.4.4",
|
|
"@libsql/darwin-x64": "0.4.4",
|
|
"@libsql/linux-arm64-gnu": "0.4.4",
|
|
"@libsql/linux-arm64-musl": "0.4.4",
|
|
"@libsql/linux-x64-gnu": "0.4.4",
|
|
"@libsql/linux-x64-musl": "0.4.4",
|
|
"@libsql/win32-x64-msvc": "0.4.4"
|
|
}
|
|
}
|