tinycondor
Version:
a tiny but useful record based db
48 lines (47 loc) • 1.05 kB
JSON
{
"name": "tinycondor",
"version": "1.3.1",
"description": "a tiny but useful record based db",
"type": "module",
"main": "./dist/db.cjs",
"module": "./dist/db.js",
"types": "./dist/db.d.ts",
"exports": {
".": {
"require": "./dist/db.cjs",
"import": "./dist/db.js"
}
},
"scripts": {
"build": "tsup src/db.ts --dts --format esm,cjs",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theproductiveprogrammer/tinycondor.git"
},
"keywords": [
"database",
"json",
"embedded"
],
"author": "charles.lobo@gmail.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/theproductiveprogrammer/tinycondor/issues"
},
"homepage": "https://github.com/theproductiveprogrammer/tinycondor#readme",
"dependencies": {
"fast-deep-equal": "^3.1.3",
"proper-lockfile": "^4.1.2",
"zod": "^3.24.3"
},
"devDependencies": {
"@types/mock-fs": "^4.13.4",
"@types/node": "^22.14.1",
"mock-fs": "^5.5.0",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"vitest": "^3.1.1"
}
}