qjson-db
Version:
Lightweight local JSON-based database for Node.js projects.
56 lines (55 loc) • 1.26 kB
JSON
{
"name": "qjson-db",
"version": "1.2.3",
"description": "Lightweight local JSON-based database for Node.js projects.",
"author": "Greitan.co",
"license": "MIT",
"homepage": "https://github.com/AlphaMSq/qjson-db#readme",
"repository": {
"type": "git",
"url": "https://github.com/AlphaMSq/qjson-db"
},
"bugs": {
"url": "https://github.com/AlphaMSq/qjson-db/issues"
},
"keywords": [
"json",
"database",
"lightweight",
"storage",
"file",
"fs",
"local-db",
"embedded-db"
],
"engines": {
"node": ">=16.0.0"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "node build.mjs",
"prepublishOnly": "npm run build",
"test:esm": "node test/test.mjs",
"test:cjs": "node test/test.cjs",
"test": "npm run test:esm && npm run test:cjs"
},
"devDependencies": {
"esbuild": "^0.25.8"
}
}