Files
formbricks-formbricks/packages/logger/package.json
T
dependabot[bot] d352d03071 chore(deps-dev): bump the npm_and_yarn group across 2 directories with 1 update (#5062)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
2025-03-26 02:09:46 +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"
},
"author": "Formbricks <hola@formbricks.com>",
"dependencies": {
"zod": "3.24.1",
"pino": "^8.0.0",
"pino-pretty": "^10.0.0"
},
"devDependencies": {
"vite": "^6.0.12",
"@formbricks/config-typescript": "workspace:*",
"vitest": "3.0.7",
"@formbricks/eslint-config": "workspace:*",
"vite-plugin-dts": "4.3.0"
}
}