mirror of
https://github.com/formbricks/formbricks.git
synced 2026-02-09 10:44:38 -06:00
* add enterprise license, add ee package * migrate database from workspaces to organisations * add payment api endpoints and billing pages * add stripe env variables to .env.example
43 lines
1.1 KiB
JSON
43 lines
1.1 KiB
JSON
{
|
|
"name": "@formbricks/ui",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.js"
|
|
},
|
|
"./styles.css": "./dist/styles.css"
|
|
},
|
|
"module": "dist/index.mjs",
|
|
"sideEffects": false,
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "tsup src/index.tsx --format esm,cjs --dts --external react",
|
|
"dev": "tsup src/index.tsx --format esm,cjs --dts --external react --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:*",
|
|
"postcss": "^8.4.19",
|
|
"react": "^18.2.0",
|
|
"tsup": "^6.4.0",
|
|
"typescript": "^4.8.4"
|
|
},
|
|
"dependencies": {
|
|
"clsx": "^1.2.1",
|
|
"next": "^13.0.2",
|
|
"react-confetti": "^6.1.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-use": "^17.4.0"
|
|
}
|
|
}
|