Files
moreminimore-redesign/packages/plugins/forms/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

46 lines
973 B
JSON

{
"name": "@emdash-cms/plugin-forms",
"version": "0.1.0",
"description": "Forms plugin for EmDash CMS - build forms, collect submissions, send notifications",
"type": "module",
"main": "src/index.ts",
"exports": {
".": "./src/index.ts",
"./admin": "./src/admin.tsx",
"./astro": "./src/astro/index.ts",
"./client": "./src/client/index.ts",
"./styles": "./src/styles/forms.css"
},
"files": [
"src"
],
"keywords": [
"emdash",
"cms",
"plugin",
"forms",
"submissions",
"contact-form"
],
"author": "Matt Kane",
"license": "MIT",
"peerDependencies": {
"astro": ">=6.0.0-beta.0",
"emdash": "workspace:*",
"react": "^18.0.0 || ^19.0.0",
"@phosphor-icons/react": "^2.1.10",
"@cloudflare/kumo": "^1.0.0"
},
"dependencies": {
"ulidx": "^2.4.1"
},
"scripts": {
"typecheck": "tsgo --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emdash-cms/emdash.git",
"directory": "packages/plugins/forms"
}
}