package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "tuf-js",
  3. "version": "3.0.1",
  4. "description": "JavaScript implementation of The Update Framework (TUF)",
  5. "main": "dist/index.js",
  6. "types": "dist/index.d.ts",
  7. "scripts": {
  8. "build": "tsc --build",
  9. "clean": "rm -rf dist && rm tsconfig.tsbuildinfo",
  10. "test": "jest"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "git+https://github.com/theupdateframework/tuf-js.git"
  15. },
  16. "files": [
  17. "dist"
  18. ],
  19. "keywords": [
  20. "tuf",
  21. "security",
  22. "update"
  23. ],
  24. "author": "bdehamer@github.com",
  25. "license": "MIT",
  26. "bugs": {
  27. "url": "https://github.com/theupdateframework/tuf-js/issues"
  28. },
  29. "homepage": "https://github.com/theupdateframework/tuf-js/tree/main/packages/client#readme",
  30. "devDependencies": {
  31. "@tufjs/repo-mock": "3.0.1",
  32. "@types/debug": "^4.1.12",
  33. "@types/make-fetch-happen": "^10.0.4"
  34. },
  35. "dependencies": {
  36. "@tufjs/models": "3.0.1",
  37. "debug": "^4.3.6",
  38. "make-fetch-happen": "^14.0.1"
  39. },
  40. "engines": {
  41. "node": "^18.17.0 || >=20.5.0"
  42. }
  43. }