Files
formbricks/packages/logger/package.json
Matti Nannt c9a50a6ff2 chore(deps-dev): bump the npm_and_yarn group across 9 directories wit… (#6730)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-23 10:09:57 +00:00

50 lines
1.2 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-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"
}
}