-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.04 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "validb",
"version": "0.0.1",
"description": "A highly efficient, file-based, lightweight, and embeddable NoSQL database, inspired by MongoDB, designed for Node.js and Bun.js environments. This database offers robust data management capabilities with full TypeScript support, ensuring type safety and enhanced developer experience.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"homepage": "https://github.com/code-muni/validb",
"repository": {
"type": "git",
"url": "https://github.com/code-muni/validb.git"
},
"scripts": {
"dev": "nodemon src/index.ts",
"build": "tsup"
},
"keywords": [
"nosql",
"database",
"file-based",
"lightweight",
"embeddable",
"mongodb",
"nodejs",
"bunjs",
"typescript"
],
"author": "Pintu Prajapati",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.12.12",
"nodemon": "^3.1.1",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"dependencies": {}
}