4478598f15
## Summary - Add `effect-fc-next`, a React 19 integration targeting Effect v4 beta. - Introduce component lifecycles, scoped resources, queries, mutations, forms, lenses, views, and refreshable components. - Add `@effect-view/vite-plugin` for Vite Fast Refresh support. - Add an Effect v4 example application covering the new APIs. - Expand test coverage for both the existing and next-generation packages. - Replace the starter Docusaurus content with complete Effect View documentation while preserving the Effect v3 docs as a versioned snapshot. - Update the landing page, navigation, package scripts, and build output. - Extend CI with linting, tests, package builds, Docker builds, and container publishing. ## Validation - `bun lint:tsc` - `bun lint:biome` - `bun test` - `bun run build` - `bun pack` - Docker image build --------- Co-authored-by: Julien Valverdé <julien.valverde@mailo.com> Reviewed-on: Thilawyn/effect-fc#56
42 lines
1.1 KiB
JSON
42 lines
1.1 KiB
JSON
{
|
|
"name": "@effect-fc/example-next",
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "tsc -b && vite build",
|
|
"dev": "vite",
|
|
"lint:tsc": "tsc -b --noEmit",
|
|
"lint:biome": "biome lint",
|
|
"preview": "vite preview",
|
|
"clean:cache": "rm -rf .turbo node_modules/.tmp node_modules/.vite* .tanstack",
|
|
"clean:dist": "rm -rf dist",
|
|
"clean:modules": "rm -rf node_modules"
|
|
},
|
|
"devDependencies": {
|
|
"@effect-view/vite-plugin": "workspace:*",
|
|
"@tanstack/react-router": "^1.170.10",
|
|
"@tanstack/react-router-devtools": "^1.167.0",
|
|
"@tanstack/router-plugin": "^1.168.13",
|
|
"@types/react": "^19.2.15",
|
|
"@types/react-dom": "^19.2.3",
|
|
"@vitejs/plugin-react": "^6.0.2",
|
|
"globals": "^17.6.0",
|
|
"react": "^19.2.6",
|
|
"react-dom": "^19.2.6",
|
|
"vite": "^8.0.16"
|
|
},
|
|
"dependencies": {
|
|
"@effect/platform-browser": "4.0.0-beta.98",
|
|
"@radix-ui/themes": "^3.3.0",
|
|
"effect": "4.0.0-beta.98",
|
|
"effect-fc-next": "workspace:*",
|
|
"react-icons": "^5.6.0"
|
|
},
|
|
"overrides": {
|
|
"@types/react": "^19.2.15",
|
|
"effect": "4.0.0-beta.98",
|
|
"react": "^19.2.6"
|
|
}
|
|
}
|