mirror of
https://github.com/formbricks/formbricks.git
synced 2026-02-11 18:58:45 -06:00
- Updated environment variables to use OTLP for tracing and metrics. - Added OpenTelemetry SDK and exporters for tracing and metrics. - Configured instrumentation for Next.js to support OpenTelemetry. - Enhanced logging with pino-opentelemetry-transport for log correlation. - Updated documentation for new environment variables related to OpenTelemetry.
51 lines
1.3 KiB
JSON
51 lines
1.3 KiB
JSON
{
|
|
"name": "@formbricks/logger",
|
|
"private": true,
|
|
"type": "module",
|
|
"version": "0.1.0",
|
|
"homepage": "https://formbricks.com",
|
|
"license": "MIT",
|
|
"description": "Logger for Formbricks",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/formbricks/formbricks"
|
|
},
|
|
"keywords": [
|
|
"Formbricks",
|
|
"logger",
|
|
"logging"
|
|
],
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"exports": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.cjs"
|
|
},
|
|
"scripts": {
|
|
"clean": "rimraf .turbo node_modules coverage dist",
|
|
"lint": "eslint . --ext .ts,.js,.tsx,.jsx",
|
|
"lint:fix": "eslint . --ext .ts,.js,.tsx,.jsx --fix",
|
|
"lint:report": "eslint . --format json --output-file ../../lint-results/app-store.json",
|
|
"build": "tsc && vite build",
|
|
"test": "vitest run"
|
|
},
|
|
"author": "Formbricks <hola@formbricks.com>",
|
|
"dependencies": {
|
|
"zod": "3.24.4",
|
|
"pino": "10.0.0",
|
|
"pino-opentelemetry-transport": "2.0.0",
|
|
"pino-pretty": "13.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"vite": "6.4.1",
|
|
"@formbricks/config-typescript": "workspace:*",
|
|
"vitest": "3.1.3",
|
|
"@formbricks/eslint-config": "workspace:*",
|
|
"vite-plugin-dts": "4.5.3"
|
|
}
|
|
}
|