mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
79ce60c580
Replace eslint and prettier with oxlint and oxfmt for faster linting and formatting across the monorepo. Remove all eslint and prettier configs, dependencies, and related packages. Add .oxlintrc.json and .oxfmtrc.json for the new tooling. Update CI workflows and lefthook hooks accordingly. Reformat codebase with oxfmt. https://claude.ai/code/session_01GMkSf29p78HuMR1mbXn8He
26 lines
692 B
JSON
26 lines
692 B
JSON
{
|
|
"name": "open-chatkit-studio",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "turbo run dev",
|
|
"dev:studio": "pnpm --filter studio dev",
|
|
"dev:playground": "pnpm --filter playground dev",
|
|
"dev:world": "pnpm --filter world dev",
|
|
"build": "turbo run build",
|
|
"build:studio": "pnpm --filter studio build",
|
|
"build:playground": "pnpm --filter playground build",
|
|
"build:world": "pnpm --filter world build",
|
|
"lint": "turbo run lint",
|
|
"clean": "turbo run clean && rm -rf node_modules"
|
|
},
|
|
"devDependencies": {
|
|
"turbo": "^2.3.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0",
|
|
"pnpm": ">=9.0.0"
|
|
},
|
|
"packageManager": "pnpm@9.15.0"
|
|
}
|