版博士V2.0程序
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

84 rader
1.9 KiB

  1. {
  2. "name": "bumpp",
  3. "version": "9.1.0",
  4. "packageManager": "pnpm@8.0.0",
  5. "description": "Bump version, commit changes, tag, and push to Git",
  6. "author": {
  7. "name": "James Messinger",
  8. "url": "https://jamesmessinger.com"
  9. },
  10. "license": "MIT",
  11. "homepage": "https://github.com/antfu/bumpp",
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/antfu/bumpp.git"
  15. },
  16. "keywords": [
  17. "version",
  18. "bump",
  19. "npm",
  20. "node",
  21. "bower",
  22. "package",
  23. "git",
  24. "tag",
  25. "push",
  26. "prompt"
  27. ],
  28. "exports": {
  29. ".": {
  30. "types": "./dist/index.d.ts",
  31. "require": "./dist/index.js",
  32. "import": "./dist/index.mjs"
  33. }
  34. },
  35. "main": "dist/index.js",
  36. "module": "dist/index.mjs",
  37. "types": "dist/index.d.ts",
  38. "bin": {
  39. "bumpp": "bin/bumpp.js"
  40. },
  41. "files": [
  42. "bin",
  43. "dist"
  44. ],
  45. "engines": {
  46. "node": ">=10"
  47. },
  48. "scripts": {
  49. "clean": "rimraf .nyc_output coverage dist",
  50. "lint": "eslint .",
  51. "build": "tsup src/index.ts src/cli/index.ts --format esm,cjs --dts --clean",
  52. "watch": "npm run build -- --watch src",
  53. "start": "esno src/cli/run.ts",
  54. "upgrade": "npm-check -u && npm audit fix",
  55. "bumpp": "esno src/cli/run.ts",
  56. "prepublishOnly": "npm run clean && npm run build",
  57. "release": "npm run bumpp && npm publish"
  58. },
  59. "dependencies": {
  60. "@jsdevtools/ez-spawn": "^3.0.4",
  61. "c12": "^1.2.0",
  62. "cac": "^6.7.14",
  63. "fast-glob": "^3.2.12",
  64. "prompts": "^2.4.2",
  65. "semver": "^7.3.8"
  66. },
  67. "devDependencies": {
  68. "@antfu/eslint-config": "^0.38.0",
  69. "@types/node": "^18.15.11",
  70. "@types/prompts": "^2.4.3",
  71. "@types/semver": "^7.3.13",
  72. "detect-indent": "^7.0.1",
  73. "detect-newline": "^4.0.0",
  74. "eslint": "^8.37.0",
  75. "esno": "^0.16.3",
  76. "log-symbols": "^5.1.0",
  77. "npm-check": "^6.0.1",
  78. "picocolors": "^1.0.0",
  79. "rimraf": "^4.4.1",
  80. "tsup": "^6.7.0",
  81. "typescript": "^5.0.2"
  82. }
  83. }