package.json 878 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "@sigstore/verify",
  3. "version": "2.1.0",
  4. "description": "Verification of Sigstore signatures",
  5. "main": "dist/index.js",
  6. "types": "dist/index.d.ts",
  7. "scripts": {
  8. "clean": "shx rm -rf dist *.tsbuildinfo",
  9. "build": "tsc --build",
  10. "test": "jest"
  11. },
  12. "files": [
  13. "dist"
  14. ],
  15. "author": "bdehamer@github.com",
  16. "license": "Apache-2.0",
  17. "repository": {
  18. "type": "git",
  19. "url": "git+https://github.com/sigstore/sigstore-js.git"
  20. },
  21. "bugs": {
  22. "url": "https://github.com/sigstore/sigstore-js/issues"
  23. },
  24. "homepage": "https://github.com/sigstore/sigstore-js/tree/main/packages/verify#readme",
  25. "publishConfig": {
  26. "provenance": true
  27. },
  28. "dependencies": {
  29. "@sigstore/protobuf-specs": "^0.4.0",
  30. "@sigstore/bundle": "^3.1.0",
  31. "@sigstore/core": "^2.0.0"
  32. },
  33. "engines": {
  34. "node": "^18.17.0 || >=20.5.0"
  35. }
  36. }