mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-07-10 01:29:17 +00:00
Some checks are pending
* test(web-shell): add browser and lint harness * test(web-shell): harden browser smoke harness * fix(web-shell): guard mock daemon model state * test(web-shell): remove unused scenario harness * fix(web-shell): remove stale lint disables * test(web-shell): make matchMedia stub writable * fix(web-shell): exclude tests from package typecheck * test(web-shell): tighten mock daemon route contract * Update packages/web-shell/client/e2e/utils/mockDaemon.ts Co-authored-by: qwen-code-ci-bot <qwen-code-ci@service.alibaba.com> * test(web-shell): clear stale SSE connections * ci(web-shell): gate smoke on full CI profile --------- Co-authored-by: ermin.zem <ermin.zem@alibaba-inc.com> Co-authored-by: qwen-code-ci-bot <qwen-code-ci@service.alibaba.com> Co-authored-by: Shaojin Wen <shaojin.wensj@alibaba-inc.com> Co-authored-by: 易良 <1204183885@qq.com>
71 lines
2.3 KiB
JSON
71 lines
2.3 KiB
JSON
{
|
|
"name": "@qwen-code/web-shell",
|
|
"version": "0.19.8",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/types/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/types/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist/index.js",
|
|
"dist/types",
|
|
"docs/examples/qwencode-viz/SKILL.md"
|
|
],
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build && vite build --config vite.lib.config.ts && tsc -p tsconfig.lib.json",
|
|
"lint": "cd ../.. && eslint packages/web-shell --ext .ts,.tsx",
|
|
"lint:fix": "cd ../.. && eslint packages/web-shell --ext .ts,.tsx --fix",
|
|
"format:check": "cd ../.. && prettier --experimental-cli --check packages/web-shell",
|
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
"test": "vitest run --config vitest.config.ts",
|
|
"test:ci": "vitest run --config vitest.config.ts --coverage",
|
|
"test:coverage": "vitest run --config vitest.config.ts --coverage",
|
|
"test:e2e:smoke": "playwright test --config playwright.config.ts --grep @smoke",
|
|
"test:e2e": "playwright test --config playwright.config.ts",
|
|
"test:e2e:report": "playwright show-report client/e2e/playwright-report",
|
|
"verify": "npm run lint && npm run format:check && npm run typecheck && npm run test:ci"
|
|
},
|
|
"dependencies": {
|
|
"@codemirror/autocomplete": "^6.18.0",
|
|
"@codemirror/commands": "^6.7.0",
|
|
"@codemirror/language": "^6.10.0",
|
|
"@codemirror/state": "^6.5.0",
|
|
"@codemirror/view": "^6.35.0",
|
|
"@tanstack/react-virtual": "^3.13.26",
|
|
"codemirror": "^6.0.0",
|
|
"fzf": "^0.5.2",
|
|
"katex": "^0.16.47",
|
|
"mermaid": "^11.15.0",
|
|
"react-markdown": "^9.0.0",
|
|
"rehype-katex": "^7.0.1",
|
|
"remark-gfm": "^4.0.0",
|
|
"remark-math": "^6.0.0",
|
|
"shiki": "^1.29.2"
|
|
},
|
|
"peerDependencies": {
|
|
"@qwen-code/sdk": ">=0.1.8",
|
|
"@qwen-code/webui": ">=0.0.1",
|
|
"react": "^18.0.0 || ^19.0.0",
|
|
"react-dom": "^18.0.0 || ^19.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.57.0",
|
|
"@qwen-code/sdk": "file:../sdk-typescript",
|
|
"@qwen-code/webui": "file:../webui",
|
|
"@types/node": "^22.0.0",
|
|
"@types/react": "^19.2.0",
|
|
"@types/react-dom": "^19.0.0",
|
|
"@vitejs/plugin-react": "^4.2.0",
|
|
"react": "^19.2.0",
|
|
"react-dom": "^19.0.0",
|
|
"typescript": "^5.3.3",
|
|
"vite": "^5.0.0",
|
|
"vitest": "^3.2.4"
|
|
}
|
|
}
|