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.

+13 -3
+3 -1
.npmignore
··· 1 - node_modules/ 1 + node_modules/ 2 + tests/ 3 + example.js/
+10 -2
package.json
··· 1 1 { 2 2 "name": "mizzleorm", 3 - "version": "0.0.1", 3 + "version": "1.0.1", 4 4 "description": "A lightweight, fully type-safe MongoDB ORM in TypeScript, inspired by Drizzle ORM.", 5 5 "main": "dist/index.js", 6 6 "types": "dist/index.d.ts", ··· 32 32 "directories": { 33 33 "example": "examples", 34 34 "test": "tests" 35 - } 35 + }, 36 + "repository": { 37 + "type": "git", 38 + "url": "git+https://github.com/dev-shahed/mizzleorm.git" 39 + }, 40 + "bugs": { 41 + "url": "https://github.com/dev-shahed/mizzleorm/issues" 42 + }, 43 + "homepage": "https://github.com/dev-shahed/mizzleorm#readme" 36 44 }