mongoose-advanced-soft-delete
Version:
Lightweight Mongoose Plugin for Effortless Soft Deletion
68 lines • 1.73 kB
JSON
{
"name": "mongoose-advanced-soft-delete",
"version": "1.1.5",
"description": "Lightweight Mongoose Plugin for Effortless Soft Deletion",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bilalhassan97/mongoose-advanced-soft-delete.git"
},
"keywords": [
"mongoose",
"soft",
"delete",
"remove",
"plugin",
"aggregate",
"ts",
"typescript",
"nestjs",
"soft-delete",
"advanced",
"mongodb"
],
"author": "Bilal Hassan",
"license": "MIT",
"bugs": {
"url": "https://github.com/bilalhassan97/mongoose-advanced-soft-delete/issues"
},
"homepage": "https://github.com/bilalhassan97/mongoose-advanced-soft-delete#readme",
"dependencies": {
"mongoose": "^8.4.1"
},
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@eslint/js": "^9.4.0",
"eslint": "9.x",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.4.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"prettier": "^3.3.2",
"tsup": "^8.1.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.13.0"
},
"lint-staged": {
"{src,apps,libs,test}/**/*.ts": [
"eslint --fix"
],
"./**/*.{ts,js,json,*rc}": [
"prettier --write"
]
},
"scripts": {
"prepublish": "npm run build",
"build": "tsup src/index.ts --format cjs,esm --dts",
"ts-check": "tsc --skipLibCheck --noEmit",
"release": "pnpm run build && changeset publish",
"precommit": "lint-staged --concurrent false && pnpm run ts-check",
"lint": "eslint ./src"
}
}