codex: components v2 maybe
Some checks failed
release / release (push) Has been cancelled
tests / build (push) Has been cancelled
tests / lint (push) Has been cancelled
tests / test (push) Has been cancelled

This commit is contained in:
2026-01-02 20:18:16 +02:00
parent b641885112
commit d1611d8f64
57 changed files with 5237 additions and 7576 deletions

View File

@@ -1,18 +1,17 @@
{
"name": "reacord-monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "run-s --continue-on-error lint:*",
"lint:eslint": "eslint . --fix --cache --cache-file=node_modules/.cache/.eslintcache --report-unused-disable-directives",
"lint:prettier": "prettier . \"**/*.astro\" --write --cache --list-different",
"lint:types": "tsc -b & pnpm -r --parallel run typecheck",
"astro-sync": "pnpm --filter website exec astro sync",
"lint:types": "bun run --cwd packages/helpers typecheck && bun run --cwd packages/reacord typecheck",
"test": "vitest",
"build": "pnpm -r run build",
"build:website": "pnpm --filter website... run build",
"start": "pnpm -C packages/website run start",
"start:website": "pnpm -C packages/website run start",
"release": "pnpm -r run build && changeset publish"
"build": "bun run --cwd packages/reacord build",
"release": "bun run build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
@@ -21,7 +20,6 @@
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"react": "^18.2.0",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
@@ -33,8 +31,7 @@
],
"ignorePatterns": [
"node_modules",
"dist",
"packages/website/public/api"
"dist"
],
"rules": {
"@typescript-eslint/no-non-null-assertion": "warn",