Files
formbricks/packages/ui/package.json
T
2025-11-25 16:25:48 +05:30

64 lines
1.7 KiB
JSON

{
"name": "@formbricks/ui",
"license": "MIT",
"version": "1.0.0",
"private": true,
"description": "Formbricks UI components - React-authored survey UI components for use in web app, Storybook, and embed bundle.",
"homepage": "https://formbricks.com",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/formbricks/formbricks"
},
"sideEffects": false,
"source": "src/index.ts",
"main": "dist/index.umd.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"scripts": {
"dev": "vite build --watch --mode dev",
"build": "tsc && vite build",
"build:dev": "tsc && vite build --mode dev",
"go": "vite build --watch --mode dev",
"lint": "eslint src --fix --ext .ts,.js,.tsx,.jsx",
"preview": "vite preview",
"clean": "rimraf .turbo node_modules dist",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"react": "19.1.0"
},
"devDependencies": {
"@formbricks/config-typescript": "workspace:*",
"@formbricks/eslint-config": "workspace:*",
"@formbricks/i18n-utils": "workspace:*",
"@formbricks/types": "workspace:*",
"@testing-library/react": "16.3.0",
"@types/react": "19.1.4",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "10.4.21",
"postcss": "8.5.3",
"tailwindcss": "3.4.17",
"terser": "5.39.1",
"vite": "6.4.1",
"vite-plugin-dts": "4.5.3",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.1.3"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
}
}