mirror of
https://github.com/vercel-labs/json-render.git
synced 2026-09-14 13:41:32 +08:00
ea47b66dfc
* add dynamic forms support: computed values, watchers, cross-field validation - `$computed` and `$template` prop expressions for derived values and string interpolation - Element-level `watch` field for cascading state dependencies - Cross-field validators (`lessThan`, `greaterThan`, `equalTo`, `requiredIf`) with deep arg resolution - `validateForm` built-in action for form-level validation * fixes * fixes * fixes * fixes * fixes * fixes * fixes * tests * fixes * update turbo * tests * fixes * fixes * fixes
52 lines
1.4 KiB
JSON
52 lines
1.4 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",
|
|
"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",
|
|
"@testing-library/dom": "^10.4.1",
|
|
"@testing-library/react": "^16.3.1",
|
|
"@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",
|
|
"turbo": "^2.7.4",
|
|
"typescript": "5.9.2",
|
|
"vitest": "^4.0.17"
|
|
},
|
|
"packageManager": "pnpm@10.29.3",
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"lint-staged": {
|
|
"*.{ts,tsx}": "prettier --write"
|
|
}
|
|
}
|