astro/packages/create-astro/package.json
Francois Valdy 5f5dc60976
Add missing licenses to published packages (#2166)
* chore: add missing licenses

* chore: update package.json info

Co-authored-by: Nate Moore <nate@skypack.dev>
2021-12-13 15:14:34 -06:00

46 lines
1.1 KiB
JSON

{
"name": "create-astro",
"version": "0.6.10",
"type": "module",
"author": "withastro",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/withastro/astro.git",
"directory": "packages/create-astro"
},
"bugs": "https://github.com/withastro/astro/issues",
"homepage": "https://astro.build",
"exports": {
".": "./create-astro.mjs"
},
"bin": {
"create-astro": "./create-astro.mjs"
},
"scripts": {
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
"dev": "astro-scripts dev \"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": {
"@types/degit": "^2.8.2",
"@types/node-fetch": "^3.0.0",
"@types/prompts": "^2.0.12",
"degit": "^2.8.4",
"kleur": "^4.1.1",
"node-fetch": "^3.0.0",
"prompts": "^2.4.1",
"yargs-parser": "^21.0.0"
},
"devDependencies": {
"uvu": "^0.5.1"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
}
}