chore(release): v0.0.9
This commit is contained in:
24
CHANGELOG.md
24
CHANGELOG.md
@ -1,6 +1,30 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
|
||||||
|
## v0.0.9
|
||||||
|
|
||||||
|
[compare changes](https://github.com/arashsheyda/nuxt-mongoose/compare/v0.0.9...v0.0.9)
|
||||||
|
|
||||||
|
### 📖 Documentation
|
||||||
|
|
||||||
|
- Update docus ([0db6bdd](https://github.com/arashsheyda/nuxt-mongoose/commit/0db6bdd))
|
||||||
|
|
||||||
|
### ❤️ Contributors
|
||||||
|
|
||||||
|
- Arashsheyda <sheidaeearash1999@gmail.com>
|
||||||
|
|
||||||
|
## v0.0.9
|
||||||
|
|
||||||
|
[compare changes](https://github.com/arashsheyda/nuxt-mongoose/compare/v0.0.9...v0.0.9)
|
||||||
|
|
||||||
|
### 📖 Documentation
|
||||||
|
|
||||||
|
- Update docus ([0db6bdd](https://github.com/arashsheyda/nuxt-mongoose/commit/0db6bdd))
|
||||||
|
|
||||||
|
### ❤️ Contributors
|
||||||
|
|
||||||
|
- Arashsheyda <sheidaeearash1999@gmail.com>
|
||||||
|
|
||||||
## v0.0.9
|
## v0.0.9
|
||||||
|
|
||||||
[compare changes](https://github.com/arashsheyda/nuxt-mongoose/compare/v0.0.8...v0.0.9)
|
[compare changes](https://github.com/arashsheyda/nuxt-mongoose/compare/v0.0.8...v0.0.9)
|
||||||
|
|||||||
78
package.json
78
package.json
@ -1,69 +1,75 @@
|
|||||||
{
|
{
|
||||||
"name": "nuxt-mongoose",
|
"name": "nuxt-mongoose-edge",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.0.9",
|
"version": "0.0.9",
|
||||||
|
"private": false,
|
||||||
|
"packageManager": "pnpm@8.7.4",
|
||||||
"description": "Nuxt 3 module for MongoDB with Mongoose",
|
"description": "Nuxt 3 module for MongoDB with Mongoose",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
"funding": "https://github.com/sponsors/arashsheyda",
|
||||||
|
"homepage": "https://nuxt-mongoose.nuxt.space",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/arashsheyda/nuxt-mongoose"
|
"url": "https://github.com/arashsheyda/nuxt-mongoose"
|
||||||
},
|
},
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://github.com/arashsheyda/nuxt-mongoose/issues"
|
||||||
|
},
|
||||||
|
"keywords": [
|
||||||
|
"nuxt",
|
||||||
|
"mongoose",
|
||||||
|
"mongodb",
|
||||||
|
"devtools"
|
||||||
|
],
|
||||||
"exports": {
|
"exports": {
|
||||||
".": {
|
".": {
|
||||||
"types": "./dist/types.d.ts",
|
"types": "./dist/types.d.ts",
|
||||||
"require": "./module.cjs",
|
"import": "./dist/module.mjs",
|
||||||
"import": "./dist/module.mjs"
|
"require": "./dist/module.cjs"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"./*": "./*"
|
"build": {
|
||||||
|
"externals": [
|
||||||
|
"ofetch"
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"main": "./module.cjs",
|
"main": "./dist/module.cjs",
|
||||||
"types": "./dist/types.d.ts",
|
"types": "./dist/types.d.ts",
|
||||||
"files": [
|
"files": [
|
||||||
"dist"
|
"dist"
|
||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "pnpm dev:prepare && pnpm build:module && pnpm build:client",
|
"build": "nuxt-module-build && npm run build:client",
|
||||||
"build:client": "nuxi generate client",
|
"build:client": "nuxi generate client",
|
||||||
"build:module": "nuxt-build-module",
|
"dev:prepare": "nuxt-module-build --stub && nuxi prepare client",
|
||||||
"dev": "nuxi dev playground",
|
"dev": "nuxi dev playground",
|
||||||
"dev:prepare": "nuxi prepare client",
|
"dev:client": "nuxi dev client --port 3300",
|
||||||
"dev:prod": "npm run build && pnpm dev",
|
"dev:prod": "npm run build && npm run dev",
|
||||||
"release": "npm run lint && npm run build && changelogen --release && npm publish && git push --follow-tags",
|
"release": "npm run lint && npm run build && changelogen --release && git push --follow-tags && npm publish",
|
||||||
"lint": "eslint .",
|
"lint": "eslint . --fix"
|
||||||
"test": "vitest run",
|
|
||||||
"test:watch": "vitest watch"
|
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@nuxt/devtools-kit": "^0.6.7",
|
"@nuxt/devtools-kit": "^0.8.2",
|
||||||
"@nuxt/kit": "^3.6.2",
|
"@nuxt/devtools-ui-kit": "^0.8.2",
|
||||||
"@types/fs-extra": "^11.0.1",
|
"@nuxt/kit": "^3.7.1",
|
||||||
"birpc": "^0.2.12",
|
"@vueuse/core": "^10.4.1",
|
||||||
"defu": "^6.1.2",
|
"defu": "^6.1.2",
|
||||||
"flatted": "^3.2.7",
|
|
||||||
"fs-extra": "^11.1.1",
|
"fs-extra": "^11.1.1",
|
||||||
"mongoose": "^7.3.2",
|
"mongoose": "^7.5.2",
|
||||||
"ofetch": "^1.1.1",
|
|
||||||
"pathe": "^1.1.1",
|
"pathe": "^1.1.1",
|
||||||
"pluralize": "^8.0.0",
|
"pluralize": "^8.0.0",
|
||||||
"sirv": "^2.0.3",
|
"sirv": "^2.0.3"
|
||||||
"vite-hot-client": "^0.2.1",
|
|
||||||
"ws": "^8.13.0"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@antfu/eslint-config": "^0.39.7",
|
"@antfu/eslint-config": "^0.41.0",
|
||||||
"@nuxt/devtools": "^0.6.7",
|
"@nuxt/module-builder": "^0.5.1",
|
||||||
"@nuxt/devtools-ui-kit": "^0.6.7",
|
"@types/fs-extra": "^11.0.2",
|
||||||
"@nuxt/module-builder": "^0.4.0",
|
|
||||||
"@nuxt/schema": "^3.6.2",
|
|
||||||
"@nuxt/test-utils": "^3.6.2",
|
|
||||||
"@types/pluralize": "^0.0.30",
|
"@types/pluralize": "^0.0.30",
|
||||||
"@types/ws": "^8.5.5",
|
"changelogen": "^0.5.5",
|
||||||
"changelogen": "^0.5.4",
|
"eslint": "8.48.0",
|
||||||
"eslint": "^8.44.0",
|
"nuxt": "^3.7.1",
|
||||||
"nuxt": "^3.6.2",
|
"sass": "^1.67.0",
|
||||||
"sass": "^1.63.6",
|
|
||||||
"sass-loader": "^13.3.2",
|
"sass-loader": "^13.3.2",
|
||||||
"splitpanes": "^3.1.5",
|
"splitpanes": "^3.1.5"
|
||||||
"vitest": "^0.33.0"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user