astro/packages/create-astro/package.json
Nate Moore 5d5d67c8f9
Add framework-specific prompt and setup to create-astro (#620)
* feat(create-astro): add framework-specific prompt and setup

* chore: normalize example `astro.config.mjs` files
2021-07-07 14:52:44 -05:00

40 lines
918 B
JSON

{
"name": "create-astro",
"version": "0.3.5",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/snowpackjs/astro.git",
"directory": "packages/create-astro"
},
"exports": {
".": "./create-astro.js"
},
"bin": {
"create-astro": "./create-astro.mjs"
},
"scripts": {
"build": "astro-scripts build \"src/*.ts\"",
"prepare": "yarn build",
"test": "rm -rf test/fixtures && mkdir test/fixtures && node --unhandled-rejections=strict test/create-astro.test.js"
},
"files": [
"dist",
"create-astro.js"
],
"dependencies": {
"node-fetch": "^2.6.1",
"@types/degit": "^2.8.2",
"@types/prompts": "^2.0.12",
"degit": "^2.8.4",
"kleur": "^4.1.1",
"prompts": "^2.4.1",
"yargs-parser": "^20.2.7"
},
"devDependencies": {
"uvu": "^0.5.1"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
}
}