package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "@astrojs/upgrade",
  3. "version": "0.2.3",
  4. "type": "module",
  5. "author": "withastro",
  6. "license": "MIT",
  7. "repository": {
  8. "type": "git",
  9. "url": "https://github.com/withastro/astro.git",
  10. "directory": "packages/upgrade"
  11. },
  12. "bugs": "https://github.com/withastro/astro/issues",
  13. "homepage": "https://astro.build",
  14. "exports": {
  15. ".": "./upgrade.mjs"
  16. },
  17. "main": "./upgrade.mjs",
  18. "bin": "./upgrade.mjs",
  19. "scripts": {
  20. "build": "astro-scripts build \"src/index.ts\" --bundle && tsc",
  21. "build:ci": "astro-scripts build \"src/index.ts\" --bundle",
  22. "dev": "astro-scripts dev \"src/**/*.ts\"",
  23. "test": "astro-scripts test \"test/**/*.test.js\""
  24. },
  25. "files": [
  26. "dist",
  27. "upgrade.js"
  28. ],
  29. "//a": "MOST PACKAGES SHOULD GO IN DEV_DEPENDENCIES! THEY WILL BE BUNDLED.",
  30. "//b": "DEPENDENCIES IS FOR UNBUNDLED PACKAGES",
  31. "dependencies": {
  32. "@astrojs/cli-kit": "^0.2.3",
  33. "semver": "^7.5.4",
  34. "which-pm-runs": "^1.1.0",
  35. "terminal-link": "^3.0.0"
  36. },
  37. "devDependencies": {
  38. "@types/semver": "^7.5.2",
  39. "@types/which-pm-runs": "^1.0.0",
  40. "arg": "^5.0.2",
  41. "astro-scripts": "workspace:*",
  42. "strip-ansi": "^7.1.0"
  43. },
  44. "engines": {
  45. "node": ">=18.14.1"
  46. }
  47. }