package.json 732 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "@sigstore/core",
  3. "version": "2.0.0",
  4. "description": "Base library for Sigstore",
  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/core#readme",
  25. "publishConfig": {
  26. "provenance": true
  27. },
  28. "engines": {
  29. "node": "^18.17.0 || >=20.5.0"
  30. }
  31. }