2024-10-17 11:23:02 +07:00
{
2025-08-29 14:11:43 -04: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" ,
2025-05-15 15:38:13 -07:00
"tsc:watch:binary" : "tsc --project binary/tsconfig.json --watch --noEmit --pretty" ,
2025-07-25 08:26:17 +05:30
"format" : "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\" --ignore-path .gitignore --ignore-path .prettierignore" ,
2025-09-25 16:13:08 -07:00
"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" ,
2025-12-05 17:15:29 -08:00
"eslint" : "^8" ,
2024-11-19 22:11:20 -08:00
"eslint-plugin-import" : "^2.29.1" ,
2025-09-25 16:13:08 -07:00
"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
}
}