summaryrefslogtreecommitdiff
path: root/packages/create-astro/package.json
blob: 1dea2f035c66c7a44a9ab65b40cc4574d4b863c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
  "name": "create-astro",
  "version": "0.6.0",
  "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\" && 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": "^2.5.12",
    "@types/prompts": "^2.0.12",
    "degit": "^2.8.4",
    "kleur": "^4.1.1",
    "node-fetch": "^2.6.1",
    "prompts": "^2.4.1",
    "yargs-parser": "^20.2.7"
  },
  "devDependencies": {
    "@types/node-fetch": "^2.5.12",
    "uvu": "^0.5.1"
  },
  "engines": {
    "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
  }
}