mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-21 05:50:14 -06:00
61 lines
1.4 KiB
JSON
61 lines
1.4 KiB
JSON
{
|
|
"name": "@formbricks/engine-react",
|
|
"version": "0.1.0",
|
|
"author": "Formbricks <hola@formbricks.com>",
|
|
"description": "Headless Form Engine for Formbricks",
|
|
"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",
|
|
"dev": "tsup --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:*",
|
|
"react": "^18.2.0",
|
|
"tsup": "^6.4.0",
|
|
"typescript": "^4.8.4"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^16.8.0 || ^17 || ^18"
|
|
},
|
|
"dependencies": {
|
|
"react-hook-form": "^7.39.1"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"keywords": [
|
|
"formbricks",
|
|
"react",
|
|
"form",
|
|
"forms",
|
|
"typescript",
|
|
"survey",
|
|
"surveys",
|
|
"engine"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/formbricks/formbricks"
|
|
}
|
|
}
|