Thin MongoDB ODM built for Standard Schema
mongodb zod deno

feat: Prepare for initial release

- Update package version to 1.0.1.
- Add repository, bugs, and homepage information to package.json.
- Exclude tests/ and example.js/ from npm package.

Changed files
+13 -3
+3 -1
.npmignore
···
-
node_modules/
+
node_modules/
+
tests/
+
example.js/
+10 -2
package.json
···
{
"name": "mizzleorm",
-
"version": "0.0.1",
+
"version": "1.0.1",
"description": "A lightweight, fully type-safe MongoDB ORM in TypeScript, inspired by Drizzle ORM.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
···
"directories": {
"example": "examples",
"test": "tests"
-
}
+
},
+
"repository": {
+
"type": "git",
+
"url": "git+https://github.com/dev-shahed/mizzleorm.git"
+
},
+
"bugs": {
+
"url": "https://github.com/dev-shahed/mizzleorm/issues"
+
},
+
"homepage": "https://github.com/dev-shahed/mizzleorm#readme"
}