package.json 810 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "@sigstore/bundle",
  3. "version": "3.1.0",
  4. "description": "Sigstore bundle type",
  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. "store"
  15. ],
  16. "author": "bdehamer@github.com",
  17. "license": "Apache-2.0",
  18. "repository": {
  19. "type": "git",
  20. "url": "git+https://github.com/sigstore/sigstore-js.git"
  21. },
  22. "bugs": {
  23. "url": "https://github.com/sigstore/sigstore-js/issues"
  24. },
  25. "homepage": "https://github.com/sigstore/sigstore-js/tree/main/packages/bundle#readme",
  26. "publishConfig": {
  27. "provenance": true
  28. },
  29. "dependencies": {
  30. "@sigstore/protobuf-specs": "^0.4.0"
  31. },
  32. "engines": {
  33. "node": "^18.17.0 || >=20.5.0"
  34. }
  35. }