Files
formbricks-formbricks/packages/api/package.json
Piyush Gupta 36bf445370 chore: update all npm dependencies (#4486)
Co-authored-by: pandeymangg <anshuman.pandey9999@gmail.com>
Co-authored-by: Anshuman Pandey <54475686+pandeymangg@users.noreply.github.com>
2024-12-18 10:02:43 +00:00

48 lines
1.2 KiB
JSON

{
"name": "@formbricks/api",
"license": "MIT",
"version": "1.9.0",
"description": "Formbricks-api is an api wrapper for the Formbricks client API",
"keywords": [
"Formbricks",
"surveys",
"experience management",
"api"
],
"sideEffects": false,
"files": [
"dist"
],
"type": "module",
"source": "src/index.ts",
"main": "dist/index.umd.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"scripts": {
"dev": "vite build --watch",
"build": "tsc && vite build",
"build:dev": "pnpm build",
"go": "vite build --watch",
"lint": "eslint . --ext .ts,.js,.tsx,.jsx",
"clean": "rimraf .turbo node_modules dist"
},
"devDependencies": {
"@formbricks/config-typescript": "workspace:*",
"@formbricks/eslint-config": "workspace:*",
"@formbricks/types": "workspace:*",
"@rollup/plugin-inject": "5.0.5",
"buffer": "6.0.3",
"terser": "5.37.0",
"vite": "6.0.3",
"vite-plugin-dts": "4.3.0",
"vite-plugin-node-polyfills": "0.22.0"
}
}