summaryrefslogtreecommitdiff
path: root/packages/create-astro/package.json
blob: 06a3daa066e3cceb91b9d95698ffc54e714bbe92 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
  "name": "create-astro",
  "version": "1.2.3",
  "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",
    "build:ci": "astro-scripts build \"src/**/*.ts\"",
    "dev": "astro-scripts dev \"src/**/*.ts\"",
    "test": "mocha --exit --timeout 20000"
  },
  "files": [
    "dist",
    "create-astro.js",
    "tsconfigs"
  ],
  "dependencies": {
    "@astrojs/cli-kit": "^0.1.4",
    "chalk": "^5.0.1",
    "comment-json": "^4.2.3",
    "execa": "^6.1.0",
    "giget": "^0.1.7",
    "kleur": "^4.1.4",
    "ora": "^6.1.0",
    "prompts": "^2.4.2",
    "strip-ansi": "^7.0.1",
    "which-pm-runs": "^1.1.0",
    "yargs-parser": "^21.0.1"
  },
  "devDependencies": {
    "@types/chai": "^4.3.1",
    "@types/degit": "^2.8.3",
    "@types/mocha": "^9.1.1",
    "@types/prompts": "^2.0.14",
    "@types/which-pm-runs": "^1.0.0",
    "@types/yargs-parser": "^21.0.0",
    "astro-scripts": "workspace:*",
    "chai": "^4.3.6",
    "mocha": "^9.2.2",
    "uvu": "^0.5.3"
  },
  "engines": {
    "node": "^14.18.0 || >=16.12.0"
  }
}