mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-07 08:50:25 -06:00
Co-authored-by: Dhruwang <dhruwangjariwala18@gmail.com> Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
50 lines
1.2 KiB
JSON
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": "9.6.0",
|
|
"pino-pretty": "13.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"vite": "6.3.5",
|
|
"@formbricks/config-typescript": "workspace:*",
|
|
"vitest": "3.1.3",
|
|
"@formbricks/eslint-config": "workspace:*",
|
|
"vite-plugin-dts": "4.5.3"
|
|
}
|
|
}
|