SIGN IN SIGN UP
continuedev / continue UNCLAIMED

⏩ Source-controlled AI checks, enforceable in CI. Powered by the open-source Continue CLI

32157 0 0 TypeScript
2024-10-17 11:23:02 +07:00
{
"name": "continue",
2024-12-09 15:57:48 -08:00
"scripts": {
2025-04-09 17:44:56 +05:30
"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\"",
2024-12-09 15:57:48 -08:00
"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"
2024-12-09 15:57:48 -08:00
},
2024-10-17 11:23:02 +07:00
"devDependencies": {
2025-10-20 09:46:46 -07:00
"@typescript-eslint/parser": "^8.40.0",
2025-04-09 17:44:56 +05:30
"concurrently": "^9.1.2",
"eslint": "^8",
2024-11-19 22:11:20 -08:00
"eslint-plugin-import": "^2.29.1",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
2024-11-19 22:11:20 -08:00
"prettier": "^3.3.3",
2025-04-09 17:44:56 +05:30
"prettier-plugin-tailwindcss": "^0.6.8",
"typescript": "^5.6.3"
2026-02-24 17:20:33 +05:30
},
"dependencies": {
"@ai-sdk/deepseek": "^2.0.20"
2024-10-17 11:23:02 +07:00
}
}