Add eslint@^8 to root package.json devDependencies to ensure npm uses eslint 8.x instead of 9.x. The core package requires eslint@^8, but @typescript-eslint/parser@8.x allows either eslint 8 or 9. Without an explicit constraint, npm install was choosing eslint 9, causing the lock file to be out of sync with core's requirements and breaking CI. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
28 lines
1.2 KiB
JSON
28 lines
1.2 KiB
JSON
{
|
|
"name": "continue",
|
|
"scripts": {
|
|
"tsc:watch": "concurrently -n gui,vscode,core,binary -c cyan,magenta,yellow,green \"npm run tsc:watch:gui\" \"npm run tsc:watch:vscode\" \"npm run tsc:watch:core\" \"npm run tsc:watch:binary\"",
|
|
"tsc:watch:gui": "tsc --project gui/tsconfig.json --watch --noEmit --pretty",
|
|
"tsc:watch:vscode": "tsc --project extensions/vscode/tsconfig.json --watch --noEmit --pretty",
|
|
"tsc:watch:core": "tsc --project core/tsconfig.json --watch --noEmit --pretty",
|
|
"tsc:watch:binary": "tsc --project binary/tsconfig.json --watch --noEmit --pretty",
|
|
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\" --ignore-path .gitignore --ignore-path .prettierignore",
|
|
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,css,md}\" --ignore-path .gitignore --ignore-path .prettierignore",
|
|
"prepare": "husky"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,ts,tsx,json,css,md}": "prettier --write"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/parser": "^8.40.0",
|
|
"concurrently": "^9.1.2",
|
|
"eslint": "^8",
|
|
"eslint-plugin-import": "^2.29.1",
|
|
"husky": "^9.1.7",
|
|
"lint-staged": "^15.5.2",
|
|
"prettier": "^3.3.3",
|
|
"prettier-plugin-tailwindcss": "^0.6.8",
|
|
"typescript": "^5.6.3"
|
|
}
|
|
}
|