package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "sigstore",
  3. "version": "1.5.2",
  4. "description": "code-signing for npm packages",
  5. "main": "dist/index.js",
  6. "types": "dist/index.d.ts",
  7. "scripts": {
  8. "build": "tsc --build",
  9. "test": "jest"
  10. },
  11. "bin": {
  12. "sigstore": "bin/sigstore.js"
  13. },
  14. "files": [
  15. "dist",
  16. "store"
  17. ],
  18. "author": "bdehamer@github.com",
  19. "license": "Apache-2.0",
  20. "repository": {
  21. "type": "git",
  22. "url": "git+https://github.com/sigstore/sigstore-js.git"
  23. },
  24. "bugs": {
  25. "url": "https://github.com/sigstore/sigstore-js/issues"
  26. },
  27. "homepage": "https://github.com/sigstore/sigstore-js/tree/main/packages/client#readme",
  28. "publishConfig": {
  29. "provenance": true
  30. },
  31. "devDependencies": {
  32. "@total-typescript/shoehorn": "^0.1.0",
  33. "@tufjs/repo-mock": "^1.1.0",
  34. "@types/make-fetch-happen": "^10.0.0",
  35. "@types/node": "^20.0.0",
  36. "json-schema-to-typescript": "^13.0.0",
  37. "nock": "^13.2.4",
  38. "typescript": "^5.0.2"
  39. },
  40. "dependencies": {
  41. "@sigstore/protobuf-specs": "^0.1.0",
  42. "make-fetch-happen": "^11.0.1",
  43. "tuf-js": "^1.1.3"
  44. },
  45. "engines": {
  46. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  47. }
  48. }