mirror of
https://github.com/formbricks/formbricks.git
synced 2025-12-30 10:19:51 -06:00
65 lines
1.7 KiB
JSON
65 lines
1.7 KiB
JSON
{
|
|
"name": "@formbricks/react-native",
|
|
"version": "2.0.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",
|
|
"test": "vitest",
|
|
"coverage": "vitest run --coverage"
|
|
},
|
|
"dependencies": {
|
|
"zod": "3.24.1"
|
|
},
|
|
"devDependencies": {
|
|
"@formbricks/api": "workspace:*",
|
|
"@formbricks/config-typescript": "workspace:*",
|
|
"@vitest/coverage-v8": "3.0.4",
|
|
"react-native": "0.74.5",
|
|
"terser": "5.37.0",
|
|
"vite": "6.0.9",
|
|
"vite-plugin-dts": "4.3.0",
|
|
"vitest": "3.0.5",
|
|
"react": "18.3.1",
|
|
"@types/react": "18.3.1"
|
|
},
|
|
"peerDependencies": {
|
|
"react": ">=16.8.0",
|
|
"react-native": ">=0.60.0",
|
|
"react-native-webview": ">=13.0.0",
|
|
"@react-native-async-storage/async-storage": ">=2.1.0"
|
|
}
|
|
}
|