package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "json-render",
  3. "private": true,
  4. "license": "Apache-2.0",
  5. "repository": {
  6. "type": "git",
  7. "url": "git+https://github.com/vercel-labs/json-render.git"
  8. },
  9. "homepage": "https://github.com/vercel-labs/json-render#readme",
  10. "bugs": {
  11. "url": "https://github.com/vercel-labs/json-render/issues"
  12. },
  13. "scripts": {
  14. "build": "turbo run build",
  15. "dev": "turbo run dev --concurrency 15",
  16. "lint": "turbo run lint",
  17. "format": "prettier --write \"**/*.{ts,tsx}\"",
  18. "type-check": "turbo run check-types",
  19. "check-types": "turbo run check-types",
  20. "test": "vitest run",
  21. "test:watch": "vitest",
  22. "test:coverage": "vitest run --coverage",
  23. "prepare": "husky"
  24. },
  25. "devDependencies": {
  26. "@testing-library/dom": "^10.4.1",
  27. "@testing-library/react": "^16.3.1",
  28. "husky": "^9.1.7",
  29. "jsdom": "^27.4.0",
  30. "lint-staged": "^16.2.7",
  31. "prettier": "^3.7.4",
  32. "turbo": "^2.7.4",
  33. "typescript": "5.9.2",
  34. "vitest": "^4.0.17"
  35. },
  36. "packageManager": "pnpm@9.0.0",
  37. "engines": {
  38. "node": ">=18"
  39. },
  40. "lint-staged": {
  41. "*.{ts,tsx}": "prettier --write"
  42. }
  43. }