@imjxsx/localdb
Version:
A lightweight MongoDB-style BSON database for Node.js
56 lines • 1.32 kB
JSON
{
"name": "@imjxsx/localdb",
"version": "1.1.1",
"description": "A lightweight MongoDB-style BSON database for Node.js",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"./dist",
"./README.md",
"./LICENSE"
],
"keywords": [
"database",
"bson",
"lowdb",
"lightweight",
"nosql",
"json-alternative",
"localdb"
],
"author": "imjxsx",
"repository": {
"type": "git",
"url": "git+https://github.com/imjxsx/localdb.git"
},
"bugs": {
"url": "https://github.com/imjxsx/localdb/issues"
},
"homepage": "https://github.com/imjxsx/localdb#readme",
"dependencies": {
"bson": "6.10.4"
},
"devDependencies": {
"@types/node": "24.9.2",
"esbuild": "0.27.0",
"tsx": "4.20.6",
"typescript": "5.9.3"
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "node ./example/index",
"build": "pnpm run build:types && pnpm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "esbuild './src/**/*.ts' --outbase=src --outdir=dist --format=esm --platform=node --target=es2022 --sourcemap --minify --packages=external"
}
}