Files
core/packages/webhook/package.json
Innei 7e616eeb88 fix: bundle
Signed-off-by: Innei <tukon479@gmail.com>
2025-05-18 22:54:31 +08:00

39 lines
849 B
JSON

{
"name": "@mx-space/webhook",
"version": "0.5.0",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./dist/*": {
"require": "./dist/*.cjs",
"import": "./dist/*.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "node scripts/generate.js && tsup && node scripts/post-build.cjs"
},
"devDependencies": {
"express": "4.21.2"
},
"bump": {
"before": [
"git pull --rebase",
"pnpm i",
"npm run build"
],
"after": [
"npm publish --access=public"
],
"tag": false,
"commit_message": "chore(release): bump @mx-space/webhook to v${NEW_VERSION}"
}
}