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
32 lines
738 B
JSON
32 lines
738 B
JSON
{
|
|
"name": "todo",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint"
|
|
},
|
|
"dependencies": {
|
|
"@copilotkit/react-core": "1.0.0-beta.2",
|
|
"@copilotkit/react-textarea": "1.0.0-beta.2",
|
|
"@copilotkit/react-ui": "1.0.0-beta.2",
|
|
"@copilotkit/runtime": "1.0.0-beta.2",
|
|
"@copilotkit/shared": "1.0.0-beta.2",
|
|
"nanoid": "^5.0.6",
|
|
"next": "14.1.3",
|
|
"react": "^18",
|
|
"react-dom": "^18"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20",
|
|
"@types/react": "^18",
|
|
"@types/react-dom": "^18",
|
|
"autoprefixer": "^10.0.1",
|
|
"postcss": "^8",
|
|
"tailwindcss": "^3.3.0",
|
|
"typescript": "^5"
|
|
}
|
|
}
|