mirror of
https://github.com/cline/cline.git
synced 2026-09-21 13:21:23 +08:00
* welcome page now shows login button * adding cline apikey to context * added cline provider + making sure welcome page closes * adjusting welcome page language * swapped cline provider to use openai flavor requests * handling credit limit errors (super hacky ugh) * welcome view hiding api options by default * added back account page and relying more heavily on the firebase custom token to ensure persistent login * persisting login state through window reloads * renaming Account -> Cline Account * use openrouter format with cline api * Update welcome experience * Fix error handling * added generation details tracking to cline provider * small edit to account view * logging cline instead of openrouter * logging cline instead of openrouter * response.data instead of response.data.data * set isdev to false for prerelease * changeset added * Update tricky-zebras-talk.md * Update tricky-zebras-talk.md * welcome page language * more logging and updated authentication system to be more robust and reliable * only removing custom token on explicit log out action * even more aggressive custom token fetching + storing in apiConfig * moving firebase auth logic to webview because nodejs firebase token refresh is not supported * cleaned up all old logic for extension server side auth persistence * reconciling merge conflicts with main * reconciling merge conflicts * package-lock.json * package lock * package-lock * packagejson + lock * use standard API Request Failed title for all API errors while maintaining detailed credit limit information in error content * deleting packagejson line for vertexai * reverting package-lock changes * package-lock.json straight from main * removing redundant csp allowance * Fix package-lock * Add missing options to cline stream * Remove duplicate csp * Remove email subscribe * Update welcome page and cline account view * Fixes * Fix errors --------- Co-authored-by: Saoud Rizwan <7799382+saoudrizwan@users.noreply.github.com>
58 lines
1.5 KiB
JSON
58 lines
1.5 KiB
JSON
{
|
|
"name": "webview-ui",
|
|
"version": "0.3.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc -b && vite build",
|
|
"preview": "vite preview",
|
|
"lint": "eslint .",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest dev"
|
|
},
|
|
"dependencies": {
|
|
"@floating-ui/react": "^0.27.4",
|
|
"@types/dompurify": "^3.0.5",
|
|
"@vscode/webview-ui-toolkit": "^1.4.0",
|
|
"debounce": "^2.1.1",
|
|
"dompurify": "^3.2.4",
|
|
"fast-deep-equal": "^3.1.3",
|
|
"firebase": "^11.3.0",
|
|
"fuse.js": "^7.0.0",
|
|
"fzf": "^0.5.2",
|
|
"mermaid": "^11.4.1",
|
|
"posthog-js": "^1.224.0",
|
|
"pretty-bytes": "^6.1.1",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"react-remark": "^2.1.0",
|
|
"react-textarea-autosize": "^8.5.7",
|
|
"react-use": "^17.6.0",
|
|
"react-virtuoso": "^4.12.3",
|
|
"rehype-highlight": "^7.0.1",
|
|
"styled-components": "^6.1.15"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.17.0",
|
|
"@testing-library/jest-dom": "^6.6.3",
|
|
"@testing-library/react": "^16.2.0",
|
|
"@testing-library/user-event": "^14.6.1",
|
|
"@types/jest": "^29.5.14",
|
|
"@types/node": "^22.13.4",
|
|
"@types/react": "^18.3.18",
|
|
"@types/react-dom": "^18.3.5",
|
|
"@types/vscode-webview": "^1.57.5",
|
|
"@vitejs/plugin-react-swc": "^3.5.0",
|
|
"eslint": "^9.17.0",
|
|
"eslint-plugin-react-hooks": "^5.0.0",
|
|
"eslint-plugin-react-refresh": "^0.4.16",
|
|
"globals": "^15.14.0",
|
|
"jsdom": "^26.0.0",
|
|
"typescript": "^5.7.3",
|
|
"typescript-eslint": "^8.18.2",
|
|
"vite": "^6.1.1",
|
|
"vitest": "^3.0.5"
|
|
}
|
|
}
|