mirror of
https://github.com/vercel-labs/json-render.git
synced 2026-09-14 13:41:32 +08:00
4bb1151b6c
* add examples * live demos * og's * r3f mobile * rate limits * fix lint
69 lines
2.1 KiB
JSON
69 lines
2.1 KiB
JSON
{
|
|
"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",
|
|
"generate:og": "npx tsx scripts/generate-og-images.mts"
|
|
},
|
|
"devDependencies": {
|
|
"@changesets/cli": "2.29.8",
|
|
"@resvg/resvg-js": "2.6.2",
|
|
"@solidjs/testing-library": "^0.8.10",
|
|
"@sveltejs/vite-plugin-svelte": "^6.2.4",
|
|
"@testing-library/dom": "^10.4.1",
|
|
"@testing-library/react": "^16.3.1",
|
|
"@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",
|
|
"satori": "0.25.0",
|
|
"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/*"
|
|
]
|
|
}
|