| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- {
- "name": "json-render",
- "private": true,
- "license": "Apache-2.0",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/vercel-labs/json-render.git"
- },
- "homepage": "https://github.com/vercel-labs/json-render#readme",
- "bugs": {
- "url": "https://github.com/vercel-labs/json-render/issues"
- },
- "scripts": {
- "build": "turbo run build",
- "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)",
- "dev": "turbo run dev --concurrency 20",
- "lint": "turbo run lint",
- "format": "prettier --write \"**/*.{ts,tsx}\"",
- "type-check": "turbo run check-types",
- "check-types": "turbo run check-types",
- "test": "vitest run",
- "test:watch": "vitest",
- "test:coverage": "vitest run --coverage",
- "test:e2e": "pnpm --filter e2e-tests test",
- "prepare": "husky",
- "changeset": "changeset",
- "ci:version": "changeset version && pnpm install --no-frozen-lockfile",
- "ci:publish": "pnpm run build && changeset publish"
- },
- "devDependencies": {
- "@changesets/cli": "2.29.8",
- "@sveltejs/vite-plugin-svelte": "^6.2.4",
- "@testing-library/dom": "^10.4.1",
- "@testing-library/react": "^16.3.1",
- "@solidjs/testing-library": "^0.8.10",
- "@testing-library/svelte": "^5.2.0",
- "@types/react": "^19.2.3",
- "husky": "^9.1.7",
- "jsdom": "^27.4.0",
- "lint-staged": "^16.2.7",
- "prettier": "^3.7.4",
- "react": "^19.2.4",
- "react-dom": "^19.2.4",
- "solid-js": "^1.9.11",
- "svelte": "^5.0.0",
- "turbo": "^2.7.4",
- "typescript": "5.9.2",
- "vite-plugin-solid": "^2.11.10",
- "vitest": "^4.0.17"
- },
- "packageManager": "pnpm@10.29.3",
- "engines": {
- "node": ">=18"
- },
- "lint-staged": {
- "*.{ts,tsx}": "prettier --write"
- },
- "workspaces": [
- "apps/*",
- "examples/*",
- "examples/stripe-app/*",
- "packages/*",
- "tests/*"
- ]
- }
|