@vulform/react
Version:
React components for VulForm contact form management
58 lines (57 loc) • 1.65 kB
JSON
{
"name": "@vulform/react",
"version": "1.1.0",
"description": "React components for VulForm contact form management",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "bun build src/index.tsx --outdir dist --format esm --minify --sourcemap --external react --external react-dom --external @vulform/core",
"build:types": "tsc --emitDeclarationOnly --outDir dist",
"build:all": "bun run clean && bun run build && bun run build:types",
"dev": "bun build src/index.ts --outdir dist --format esm --watch --external react --external react-dom --external @vulform/core",
"clean": "rm -rf dist",
"test": "jest",
"lint": "eslint src --ext .ts,.tsx",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run build:all",
"publish:npm": "npm publish --access public",
"publish:dry": "bun pm pack"
},
"keywords": [
"vulform",
"react",
"forms",
"contact-form",
"components"
],
"author": "Dogu Yilmaz",
"license": "MIT",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"dependencies": {
"@vulform/core": "^1.1.0"
},
"devDependencies": {
"@types/react": "^18.2.38",
"@types/react-dom": "^18.2.17",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.3.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/doguyilmaz/vulform.git",
"directory": "packages/react"
},
"bugs": {
"url": "https://github.com/doguyilmaz/vulform/issues"
},
"homepage": "https://vulform.dev"
}