package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "create-astro",
  3. "version": "4.7.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/create-astro"
  11. },
  12. "bugs": "https://github.com/withastro/astro/issues",
  13. "homepage": "https://astro.build",
  14. "exports": {
  15. ".": "./create-astro.mjs"
  16. },
  17. "main": "./create-astro.mjs",
  18. "bin": {
  19. "create-astro": "./create-astro.mjs"
  20. },
  21. "scripts": {
  22. "build": "astro-scripts build \"src/index.ts\" --bundle && tsc",
  23. "build:ci": "astro-scripts build \"src/index.ts\" --bundle",
  24. "dev": "astro-scripts dev \"src/**/*.ts\"",
  25. "test": "astro-scripts test \"test/**/*.test.js\""
  26. },
  27. "files": [
  28. "dist",
  29. "create-astro.js"
  30. ],
  31. "//a": "MOST PACKAGES SHOULD GO IN DEV_DEPENDENCIES! THEY WILL BE BUNDLED.",
  32. "//b": "DEPENDENCIES IS FOR UNBUNDLED PACKAGES",
  33. "dependencies": {
  34. "@astrojs/cli-kit": "^0.4.1",
  35. "giget": "1.1.3"
  36. },
  37. "devDependencies": {
  38. "arg": "^5.0.2",
  39. "astro-scripts": "workspace:*",
  40. "strip-ansi": "^7.1.0",
  41. "strip-json-comments": "^5.0.1"
  42. },
  43. "engines": {
  44. "node": ">=18.14.1"
  45. },
  46. "publishConfig": {
  47. "provenance": true
  48. }
  49. }