astro/packages/create-astro/package.json

44 lines
1 KiB
JSON
Raw Normal View History

{
"name": "create-astro",
"version": "0.6.7-next.1",
"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": {
2021-07-22 00:39:14 +00:00
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
"dev": "astro-scripts dev \"src/**/*.ts\"",
"prepare": "yarn build",
2021-06-11 21:07:30 +00:00
"test": "rm -rf test/fixtures && mkdir test/fixtures && node --unhandled-rejections=strict test/create-astro.test.js"
},
"files": [
"dist",
"create-astro.js"
],
"dependencies": {
"@types/degit": "^2.8.2",
2021-07-27 16:54:53 +00:00
"@types/node-fetch": "^2.5.12",
"@types/prompts": "^2.0.12",
"degit": "^2.8.4",
"kleur": "^4.1.1",
2021-07-27 16:54:53 +00:00
"node-fetch": "^2.6.1",
"prompts": "^2.4.1",
"yargs-parser": "^20.2.7"
},
"devDependencies": {
2021-07-27 16:54:53 +00:00
"@types/node-fetch": "^2.5.12",
"uvu": "^0.5.1"
2021-06-14 12:20:14 +00:00
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
}
}