Files
moreminimore-redesign/packages/plugins/webhook-notifier/package.json
Matt Kane de70c72aa8 fix: set all plugin versions to 0.1.0 (not 1.0.0)
Changesets treats minor on 0.0.x as a major bump per semver convention.
All packages should be 0.1.0 for the first beta release.
2026-04-01 16:10:06 +01:00

39 lines
794 B
JSON

{
"name": "@emdash-cms/plugin-webhook-notifier",
"version": "0.1.0",
"description": "Webhook notification plugin for EmDash CMS - posts to external URLs on content changes",
"type": "module",
"main": "src/index.ts",
"exports": {
".": "./src/index.ts",
"./sandbox": "./src/sandbox-entry.ts"
},
"files": [
"src"
],
"keywords": [
"emdash",
"cms",
"plugin",
"webhook",
"notifications",
"integration"
],
"author": "Matt Kane",
"license": "MIT",
"peerDependencies": {
"emdash": "workspace:*"
},
"devDependencies": {},
"scripts": {
"typecheck": "tsgo --noEmit"
},
"dependencies": {},
"optionalDependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/emdash-cms/emdash.git",
"directory": "packages/plugins/webhook-notifier"
}
}