package.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. },
  30. "devDependencies": {
  31. "@changesets/cli": "2.29.8",
  32. "@sveltejs/vite-plugin-svelte": "^6.2.4",
  33. "@testing-library/dom": "^10.4.1",
  34. "@testing-library/react": "^16.3.1",
  35. "@solidjs/testing-library": "^0.8.10",
  36. "@testing-library/svelte": "^5.2.0",
  37. "@types/react": "^19.2.3",
  38. "husky": "^9.1.7",
  39. "jsdom": "^27.4.0",
  40. "lint-staged": "^16.2.7",
  41. "prettier": "^3.7.4",
  42. "react": "^19.2.4",
  43. "react-dom": "^19.2.4",
  44. "solid-js": "^1.9.11",
  45. "svelte": "^5.0.0",
  46. "turbo": "^2.7.4",
  47. "typescript": "5.9.2",
  48. "vite-plugin-solid": "^2.11.10",
  49. "vitest": "^4.0.17"
  50. },
  51. "packageManager": "pnpm@10.29.3",
  52. "engines": {
  53. "node": ">=18"
  54. },
  55. "lint-staged": {
  56. "*.{ts,tsx}": "prettier --write"
  57. },
  58. "workspaces": [
  59. "apps/*",
  60. "examples/*",
  61. "examples/stripe-app/*",
  62. "packages/*",
  63. "tests/*"
  64. ]
  65. }