package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "get-npm-tarball-url",
  3. "version": "2.1.0",
  4. "description": "Create the tarball URL of a npm package",
  5. "packageManager": "pnpm@8.10.2",
  6. "type": "commonjs",
  7. "main": "lib/index.js",
  8. "module": "lib/index.mjs",
  9. "types": "lib/index.d.ts",
  10. "exports": {
  11. ".": {
  12. "require": {
  13. "types": "./lib/index.d.ts",
  14. "default": "./lib/index.js"
  15. },
  16. "import": {
  17. "types": "./lib/index.d.mts",
  18. "default": "./lib/index.mjs"
  19. }
  20. }
  21. },
  22. "files": [
  23. "lib"
  24. ],
  25. "repository": {
  26. "type": "git",
  27. "url": "git+https://github.com/pnpm/get-npm-tarball-url.git"
  28. },
  29. "engines": {
  30. "node": ">=12.17"
  31. },
  32. "keywords": [
  33. "npm",
  34. "url",
  35. "tarball"
  36. ],
  37. "author": {
  38. "name": "Zoltan Kochan",
  39. "email": "z@kochan.io",
  40. "url": "https://www.kochan.io/"
  41. },
  42. "license": "MIT",
  43. "bugs": {
  44. "url": "https://github.com/pnpm/get-npm-tarball-url/issues"
  45. },
  46. "homepage": "https://github.com/pnpm/get-npm-tarball-url#readme",
  47. "devDependencies": {
  48. "@types/jest": "^27.0.3",
  49. "jest": "^27.3.1",
  50. "ts-jest": "^27.0.7",
  51. "ts-node": "^10.4.0",
  52. "tsup": "^7.2.0",
  53. "typescript": "^4.5.2"
  54. },
  55. "scripts": {
  56. "test": "jest",
  57. "tsc": "tsc",
  58. "build": "tsup"
  59. }
  60. }