UNPKG

nodedb-json

Version:

A lightweight JSON-based database for Node.js with TypeScript support, indexing, and complex query capabilities

57 lines (56 loc) 1.47 kB
{ "name": "nodedb-json", "version": "1.3.0", "description": "A lightweight JSON-based database for Node.js with TypeScript support, indexing, and complex query capabilities", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc", "prepublishOnly": "npm run build", "example": "npm run build && node dist/example.js", "example:ts": "npm run build && node -r ts-node/register example/ts-example.ts", "example:index": "npm run build && node -r ts-node/register example/index-example.ts", "example:query": "npm run build && node -r ts-node/register example/query-example.ts", "test": "echo \"Error: no test specified\" && exit 1" }, "repository": { "type": "git", "url": "https://github.com/zxbb1190/nodedb-json.git" }, "keywords": [ "json", "database", "nodejs", "typescript", "lightweight", "file-based", "indexing", "query", "pagination", "aggregation", "sorting" ], "author": { "name": "Xiaoman", "email": "douyaj33@gmail.com" }, "license": "MIT", "bugs": { "url": "https://github.com/zxbb1190/nodedb-json/issues", "email": "douyaj33@gmail.com" }, "dependencies": { "lodash": "^4.17.21" }, "devDependencies": { "@types/lodash": "^4.14.202", "@types/node": "^20.10.5", "ts-node": "^10.9.2", "typescript": "^5.3.3" }, "files": [ "dist/**/*", "README.md", "LICENSE" ] }