* Add model-recs yaml file for central updating * feat: centralize model recommendations with React component - Add ModelRecommendations.jsx component for dynamic table rendering - Replace static markdown table in models.mdx with reusable component - Update model recommendations with latest 2025 models - Add support for role-based filtering and markdown link parsing - Remove unused YAML data files to reduce duplication - Implement centralized model management per Mintlify best practices * Add recommended agent models to agent docs * Add Autocomplete model recs * Link to mercury coder * Add Recommendations for chat models * Add recommendation for edit * Add Autocomplete recs * Add chat model recs * Add model recs to edit * Run Prettier * Fix merge conflicts * Merge new files from main * Add name to package.json
21 lines
1.1 KiB
JSON
21 lines
1.1 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"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/parser": "^7.8.0",
|
|
"concurrently": "^9.1.2",
|
|
"eslint-plugin-import": "^2.29.1",
|
|
"prettier": "^3.3.3",
|
|
"prettier-plugin-tailwindcss": "^0.6.8",
|
|
"typescript": "^5.6.3"
|
|
}
|
|
}
|