mirror of
https://github.com/formbricks/formbricks.git
synced 2025-12-30 10:19:51 -06:00
Bumps the npm_and_yarn group with 2 updates in the / directory: [esbuild](https://github.com/evanw/esbuild) and [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest). Bumps the npm_and_yarn group with 1 update in the /apps/storybook directory: [esbuild](https://github.com/evanw/esbuild). Bumps the npm_and_yarn group with 1 update in the /apps/web directory: [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest). Bumps the npm_and_yarn group with 1 update in the /packages/react-native directory: [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest). Updates `esbuild` from 0.24.0 to 0.25.0 - [Release notes](https://github.com/evanw/esbuild/releases) - [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2024.md) - [Commits](https://github.com/evanw/esbuild/compare/v0.24.0...v0.25.0) Updates `vitest` from 2.1.8 to 2.1.9 - [Release notes](https://github.com/vitest-dev/vitest/releases) - [Commits](https://github.com/vitest-dev/vitest/commits/v2.1.9/packages/vitest) Updates `esbuild` from 0.24.0 to 0.25.0 - [Release notes](https://github.com/evanw/esbuild/releases) - [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2024.md) - [Commits](https://github.com/evanw/esbuild/compare/v0.24.0...v0.25.0) Updates `vitest` from 2.1.8 to 2.1.9 - [Release notes](https://github.com/vitest-dev/vitest/releases) - [Commits](https://github.com/vitest-dev/vitest/commits/v2.1.9/packages/vitest) Updates `vitest` from 3.0.4 to 3.0.5 - [Release notes](https://github.com/vitest-dev/vitest/releases) - [Commits](https://github.com/vitest-dev/vitest/commits/v2.1.9/packages/vitest) --- updated-dependencies: - dependency-name: esbuild dependency-type: direct:development dependency-group: npm_and_yarn - dependency-name: vitest dependency-type: direct:development dependency-group: npm_and_yarn - dependency-name: esbuild dependency-type: direct:development dependency-group: npm_and_yarn - dependency-name: vitest dependency-type: direct:development dependency-group: npm_and_yarn - dependency-name: vitest dependency-type: direct:development dependency-group: npm_and_yarn ... Signed-off-by: dependabot[bot] <support@github.com>
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:*",
|
|
"@types/react": "18.3.11",
|
|
"@vitest/coverage-v8": "3.0.4",
|
|
"react": "18.3.1",
|
|
"react-native": "0.74.5",
|
|
"terser": "5.37.0",
|
|
"vite": "6.0.9",
|
|
"vite-plugin-dts": "4.3.0",
|
|
"vitest": "3.0.5"
|
|
},
|
|
"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"
|
|
}
|
|
}
|