package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "checkout",
  3. "version": "7.0.0",
  4. "description": "checkout action",
  5. "type": "module",
  6. "main": "lib/main.js",
  7. "scripts": {
  8. "build": "tsc && ncc build src/main.ts -o dist && node lib/misc/generate-docs.js",
  9. "format": "prettier --write '**/*.ts'",
  10. "format-check": "prettier --check '**/*.ts'",
  11. "lint": "eslint src/**/*.ts",
  12. "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
  13. "licensed-check": "src/misc/licensed-check.sh",
  14. "licensed-generate": "src/misc/licensed-generate.sh"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "git+https://github.com/actions/checkout.git"
  19. },
  20. "keywords": [
  21. "github",
  22. "actions",
  23. "checkout"
  24. ],
  25. "author": "GitHub",
  26. "license": "MIT",
  27. "bugs": {
  28. "url": "https://github.com/actions/checkout/issues"
  29. },
  30. "homepage": "https://github.com/actions/checkout#readme",
  31. "engines": {
  32. "node": ">=24"
  33. },
  34. "dependencies": {
  35. "@actions/core": "^3.0.1",
  36. "@actions/exec": "^3.0.0",
  37. "@actions/github": "^9.1.1",
  38. "@actions/io": "^3.0.2",
  39. "@actions/tool-cache": "^4.0.0"
  40. },
  41. "devDependencies": {
  42. "@types/jest": "^29.5.12",
  43. "@types/node": "^24.1.0",
  44. "@typescript-eslint/eslint-plugin": "^7.9.0",
  45. "@typescript-eslint/parser": "^7.9.0",
  46. "@vercel/ncc": "^0.44.0",
  47. "eslint": "^8.57.0",
  48. "eslint-plugin-github": "^6.0.0",
  49. "eslint-plugin-jest": "^28.8.2",
  50. "jest": "^29.7.0",
  51. "js-yaml": "^4.2.0",
  52. "prettier": "^3.8.4",
  53. "ts-jest": "^29.4.11",
  54. "ts-node": "^10.9.2",
  55. "typescript": "^5.5.4"
  56. }
  57. }