Files
formbricks-formbricks/packages/react-native/package.json
2024-10-12 10:42:12 +02:00

60 lines
1.6 KiB
JSON

{
"name": "@formbricks/react-native",
"version": "1.1.0",
"license": "MIT",
"description": "Formbricks React Native SDK allows you to connect your app to Formbricks, display surveys and trigger events.",
"homepage": "https://formbricks.com",
"repository": {
"type": "git",
"url": "https://github.com/formbricks/formbricks"
},
"keywords": [
"Formbricks",
"surveys",
"experience management",
"react native",
"sdk"
],
"author": "Formbricks <hola@formbricks.com>",
"sideEffects": false,
"type": "module",
"main": "dist/index.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.cjs"
}
},
"scripts": {
"build": "tsc && vite build",
"build:dev": "tsc && vite build --mode dev",
"lint": "eslint src --ext .ts,.js,.tsx,.jsx",
"dev": "vite build --watch --mode dev",
"clean": "rimraf .turbo node_modules dist .turbo"
},
"devDependencies": {
"@formbricks/api": "workspace:*",
"@formbricks/config-typescript": "workspace:*",
"@formbricks/lib": "workspace:*",
"@formbricks/types": "workspace:*",
"@react-native-async-storage/async-storage": "1.23.1",
"@types/react": "18.3.11",
"react": "18.3.1",
"react-native": "0.74.5",
"terser": "5.31.3",
"vite": "5.4.8",
"vite-plugin-dts": "3.9.1"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-native": ">=0.60.0",
"react-native-webview": ">=13.0.0"
}
}