package.json 851 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "@roo-code/vscode-e2e",
  3. "private": true,
  4. "scripts": {
  5. "lint": "eslint src --ext=ts --max-warnings=0",
  6. "check-types": "tsc -p tsconfig.esm.json --noEmit",
  7. "format": "prettier --write src",
  8. "test:ci": "pnpm -w bundle && pnpm --filter @roo-code/vscode-webview build && pnpm test:run",
  9. "test:run": "rimraf out && tsc -p tsconfig.json && npx dotenvx run -f .env.local -- node ./out/runTest.js",
  10. "clean": "rimraf out .turbo"
  11. },
  12. "devDependencies": {
  13. "@roo-code/config-eslint": "workspace:^",
  14. "@roo-code/config-typescript": "workspace:^",
  15. "@roo-code/types": "workspace:^",
  16. "@types/mocha": "^10.0.10",
  17. "@types/node": "^22.14.1",
  18. "@types/vscode": "^1.95.0",
  19. "@vscode/test-cli": "^0.0.10",
  20. "@vscode/test-electron": "^2.4.0",
  21. "glob": "^11.0.1",
  22. "mocha": "^11.1.0",
  23. "rimraf": "^6.0.1",
  24. "typescript": "5.8.3"
  25. }
  26. }