package.json 563 B

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