package.json 945 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "@tachiyomiorg/issue-moderator-action",
  3. "version": "2.6.1",
  4. "description": "GitHub action to moderate issues",
  5. "repository": {
  6. "type": "git",
  7. "url": "https://github.com/tachiyomiorg/issue-moderator-action.git"
  8. },
  9. "license": "MPL-2.0",
  10. "main": "dist/index.js",
  11. "scripts": {
  12. "format": "prettier --write .",
  13. "test": "vitest --run",
  14. "test:integ": "vitest --config vitest.config.integ.ts",
  15. "build": "node esbuild.config.mjs",
  16. "prepare": "npm run format && npm run test && npm run build"
  17. },
  18. "dependencies": {
  19. "@actions/core": "1.11.1",
  20. "@actions/github": "6.0.0",
  21. "@octokit/webhooks-types": "7.6.1",
  22. "axios": "1.7.9"
  23. },
  24. "devDependencies": {
  25. "@octokit/action": "7.0.0",
  26. "@tsconfig/node20": "20.1.4",
  27. "@types/dedent": "0.7.2",
  28. "@types/node": "20.11.16",
  29. "esbuild": "0.24.2",
  30. "prettier": "3.4.2",
  31. "typescript": "5.7.3",
  32. "vitest": "3.0.4"
  33. }
  34. }