package.json 962 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "@growi/logger",
  3. "version": "1.0.0",
  4. "description": "Pino-based logger factory for GROWI",
  5. "license": "MIT",
  6. "private": true,
  7. "type": "module",
  8. "main": "dist/index.cjs",
  9. "module": "dist/index.js",
  10. "types": "dist/index.d.ts",
  11. "exports": {
  12. ".": {
  13. "import": "./dist/index.js",
  14. "require": "./dist/index.cjs"
  15. }
  16. },
  17. "scripts": {
  18. "build": "vite build",
  19. "clean": "shx rm -rf dist",
  20. "dev": "vite build --mode dev",
  21. "watch": "pnpm run dev -w --emptyOutDir=false",
  22. "lint:biome": "biome check",
  23. "lint:typecheck": "tsgo --noEmit",
  24. "lint": "npm-run-all -p lint:*",
  25. "test": "vitest run"
  26. },
  27. "dependencies": {
  28. "minimatch": "^9.0.0",
  29. "pino": "^9.0.0",
  30. "pino-http": "^11.0.0"
  31. },
  32. "peerDependencies": {
  33. "pino-pretty": "^13.0.0"
  34. },
  35. "peerDependenciesMeta": {
  36. "pino-pretty": {
  37. "optional": true
  38. }
  39. },
  40. "devDependencies": {
  41. "pino-pretty": "^13.0.0"
  42. }
  43. }