27 lines
723 B
JSON
27 lines
723 B
JSON
{
|
|
"name": "mongo-validate",
|
|
"version": "0.0.1",
|
|
"description": "Lightweight schema validation for MongoDB with Zod",
|
|
"author": "Mikayla Dobson",
|
|
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"files": ["dist/**/*"],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "ts-node index.ts",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"keywords": ["validation", "typechecking", "typescript", "schema", "mongodb", "mongo", "zod", "testing", "build", "ci", "continuous integration"],
|
|
"license": "ISC",
|
|
"peerDependencies": {
|
|
"mongodb": "^6.3.0",
|
|
"zod": "^3.22.4"
|
|
},
|
|
"devDependencies": {
|
|
"dotenv": "^16.4.1",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
}
|