package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. "predev": "command -v portless >/dev/null 2>&1 || (echo '\\nportless is required but not installed. Run: npm i -g portless\\nSee: https://github.com/vercel-labs/portless\\n' && exit 1)",
  16. "dev": "turbo run dev --concurrency 20",
  17. "lint": "turbo run lint",
  18. "format": "prettier --write \"**/*.{ts,tsx}\"",
  19. "type-check": "turbo run check-types",
  20. "check-types": "turbo run check-types",
  21. "test": "vitest run",
  22. "test:watch": "vitest",
  23. "test:coverage": "vitest run --coverage",
  24. "test:e2e": "pnpm --filter e2e-tests test",
  25. "prepare": "husky",
  26. "changeset": "changeset",
  27. "ci:version": "changeset version && pnpm install --no-frozen-lockfile",
  28. "ci:publish": "pnpm run build && changeset publish",
  29. "generate:og": "npx tsx scripts/generate-og-images.mts"
  30. },
  31. "devDependencies": {
  32. "@changesets/cli": "2.29.8",
  33. "@resvg/resvg-js": "2.6.2",
  34. "@solidjs/testing-library": "^0.8.10",
  35. "@sveltejs/vite-plugin-svelte": "^6.2.4",
  36. "@testing-library/dom": "^10.4.1",
  37. "@testing-library/react": "^16.3.1",
  38. "@testing-library/svelte": "^5.2.0",
  39. "@types/react": "^19.2.3",
  40. "husky": "^9.1.7",
  41. "jsdom": "^27.4.0",
  42. "lint-staged": "^16.2.7",
  43. "prettier": "^3.7.4",
  44. "react": "^19.2.4",
  45. "react-dom": "^19.2.4",
  46. "satori": "0.25.0",
  47. "solid-js": "^1.9.11",
  48. "svelte": "^5.0.0",
  49. "turbo": "^2.7.4",
  50. "typescript": "5.9.2",
  51. "vite-plugin-solid": "^2.11.10",
  52. "vitest": "^4.0.17"
  53. },
  54. "packageManager": "pnpm@10.29.3",
  55. "engines": {
  56. "node": ">=18"
  57. },
  58. "lint-staged": {
  59. "*.{ts,tsx}": "prettier --write"
  60. },
  61. "workspaces": [
  62. "apps/*",
  63. "examples/*",
  64. "examples/stripe-app/*",
  65. "packages/*",
  66. "tests/*"
  67. ]
  68. }