mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-26 02:58:48 -06:00
40 lines
1.2 KiB
JSON
40 lines
1.2 KiB
JSON
{
|
|
"name": "@formbricks/react",
|
|
"version": "0.0.3",
|
|
"author": "Formbricks <hola@formbricks.com>",
|
|
"description": "Building React forms has never been quicker.",
|
|
"homepage": "https://formbricks.com",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": "./dist",
|
|
"./styles.css": "./dist/styles.css"
|
|
},
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "tsup src/index.tsx --format esm,cjs --dts --external react && tailwindcss -i ./src/styles.css -o ./dist/styles.css",
|
|
"dev": "concurrently \"tsup src/index.tsx --format esm,cjs --dts --external react --watch\" \"tailwindcss -i ./src/styles.css -o ./dist/styles.css --watch\"",
|
|
"clean": "rm -rf dist"
|
|
},
|
|
"devDependencies": {
|
|
"@formbricks/tailwind-config": "workspace:*",
|
|
"@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": {
|
|
"clsx": "^1.2.1",
|
|
"react-hook-form": "^7.39.1"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|