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
957 B
JSON
32 lines
957 B
JSON
{
|
|
"name": "functions",
|
|
"private": true,
|
|
"main": "lib/index.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"build:watch": "tsc --watch",
|
|
"serve": "npm run build && firebase emulators:start --only functions",
|
|
"shell": "npm run build && firebase functions:shell",
|
|
"start": "npm run shell",
|
|
"deploy": "firebase deploy --only functions",
|
|
"logs": "firebase functions:log"
|
|
},
|
|
"dependencies": {
|
|
"@copilotkit/backend": "^0.7.0-mme-firebase-fixes.0",
|
|
"@copilotkit/react-core": "^0.23.0-mme-firebase-fixes.0",
|
|
"@copilotkit/react-textarea": "^0.33.0-mme-firebase-fixes.0",
|
|
"@copilotkit/react-ui": "^0.20.0-mme-firebase-fixes.0",
|
|
"@copilotkit/shared": "^0.7.0-mme-firebase-fixes.0",
|
|
"firebase-admin": "^12.0.0",
|
|
"firebase-functions": "^4.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"firebase-functions-test": "^3.1.0",
|
|
"firebase-tools": "^13.6.0",
|
|
"typescript": "^5.4.3"
|
|
},
|
|
"engines": {
|
|
"node": "18"
|
|
}
|
|
}
|