Files
formbricks/packages/react/package.json
2023-02-06 14:53:48 +01:00

67 lines
1.7 KiB
JSON

{
"name": "@formbricks/react",
"version": "0.3.1",
"author": "Formbricks <hola@formbricks.com>",
"description": "Building React forms has never been quicker.",
"homepage": "https://formbricks.com",
"main": "./dist/index.js",
"module": "dist/index.mjs",
"types": "./dist/index.d.ts",
"sideEffects": false,
"exports": {
"./package.json": "./package.json",
"./styles.css": "./dist/styles.css",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"license": "MIT",
"scripts": {
"build": "tsup --dts && tailwindcss -i ./src/styles.css -o ./dist/styles.css --minify",
"dev": "concurrently \"tsup --dts --external react --watch\" \"tailwindcss -i ./src/styles.css -o ./dist/styles.css --watch\"",
"clean": "rm -rf dist"
},
"devDependencies": {
"@formbricks/tsconfig": "workspace:*",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"concurrently": "^7.5.0",
"eslint": "^8.27.0",
"eslint-config-formbricks": "workspace:*",
"react": "^18.2.0",
"tailwindcss": "^3.2.2",
"tsup": "^6.4.0",
"typescript": "^4.8.4"
},
"dependencies": {
"@headlessui/react": "^1.7.4",
"@hookform/error-message": "^2.0.1",
"clsx": "^1.2.1",
"react-hook-form": "^7.39.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17 || ^18"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"react",
"form",
"forms",
"form-validation",
"validation",
"typescript",
"formbricks",
"survey",
"surveys",
"select"
],
"repository": {
"type": "git",
"url": "https://github.com/formbricks/formbricks"
}
}