package.json 602 B

12345678910111213141516171819202122
  1. {
  2. "name": "e2e",
  3. "version": "0.1.0",
  4. "private": true,
  5. "scripts": {
  6. "build": "cd .. && npm run compile && npm run build:webview",
  7. "compile": "rm -rf out && tsc -p tsconfig.json",
  8. "lint": "eslint src --ext ts",
  9. "check-types": "tsc --noEmit",
  10. "test": "npm run compile && npx dotenvx run -f .env.local -- node ./out/runTest.js",
  11. "ci": "npm run build && npm run test",
  12. "clean": "rimraf out"
  13. },
  14. "dependencies": {},
  15. "devDependencies": {
  16. "@types/mocha": "^10.0.10",
  17. "@vscode/test-cli": "^0.0.9",
  18. "@vscode/test-electron": "^2.4.0",
  19. "mocha": "^11.1.0",
  20. "typescript": "^5.4.5"
  21. }
  22. }