Files
formbricks/packages/ai/package.json
T
dependabot[bot] 90eb78e571 chore(deps): bump the npm_and_yarn group across 5 directories with 2 updates (#7834)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Matti Nannt <matti@formbricks.com>
2026-04-28 12:01:12 +02:00

55 lines
1.5 KiB
JSON

{
"$schema": "https://json.schemastore.org/package.json",
"name": "@formbricks/ai",
"private": true,
"type": "module",
"version": "0.1.0",
"homepage": "https://formbricks.com",
"description": "Shared AI provider configuration and model resolution for Formbricks",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/formbricks/formbricks"
},
"keywords": [
"Formbricks",
"ai",
"llm",
"providers"
],
"files": [
"dist"
],
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"scripts": {
"clean": "rimraf .turbo node_modules coverage dist",
"lint": "eslint . --ext .ts,.js",
"lint:fix": "eslint . --ext .ts,.js --fix",
"lint:report": "eslint . --format json --output-file ../../lint-results/ai.json",
"build": "rimraf dist && vite build && tsc --project tsconfig.build.json",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"author": "Formbricks <hola@formbricks.com>",
"dependencies": {
"@ai-sdk/amazon-bedrock": "4.0.96",
"@ai-sdk/azure": "3.0.54",
"@ai-sdk/google-vertex": "4.0.112",
"@aws-sdk/credential-providers": "3.1017.0",
"@formbricks/logger": "workspace:*",
"@formbricks/types": "workspace:*",
"ai": "6.0.168"
},
"devDependencies": {
"@formbricks/config-typescript": "workspace:*",
"@formbricks/eslint-config": "workspace:*",
"@vitest/coverage-v8": "4.1.5",
"vite": "8.0.10",
"vitest": "4.1.5"
}
}