package.json 1.3 KB
Newer Older
J
Joe Haddad 已提交
1 2
{
  "name": "create-next-app",
J
JJ Kasper 已提交
3
  "version": "10.0.9-canary.8",
J
Joe Haddad 已提交
4 5 6 7 8 9 10 11
  "keywords": [
    "react",
    "next",
    "next.js"
  ],
  "description": "Create Next.js-powered React apps with one command",
  "repository": {
    "type": "git",
12
    "url": "https://github.com/vercel/next.js",
J
Joe Haddad 已提交
13 14
    "directory": "packages/create-next-app"
  },
T
Tim Neutkens 已提交
15
  "author": "Next.js Team <support@vercel.com>",
J
Joe Haddad 已提交
16 17
  "license": "MIT",
  "bin": {
J
Joe Haddad 已提交
18
    "create-next-app": "./dist/index.js"
J
Joe Haddad 已提交
19
  },
J
Joe Haddad 已提交
20 21 22 23
  "files": [
    "dist"
  ],
  "scripts": {
24
    "dev": "ncc build ./index.ts -w -o dist/",
J
Joe Haddad 已提交
25 26 27
    "prerelease": "rimraf ./dist/",
    "release": "ncc build ./index.ts -o ./dist/ --minify --no-cache --no-source-map-register",
    "prepublish": "yarn release"
J
Joe Haddad 已提交
28
  },
J
Joe Haddad 已提交
29
  "devDependencies": {
30
    "@types/async-retry": "1.4.2",
J
Joe Haddad 已提交
31 32
    "@types/node": "^12.6.8",
    "@types/prompts": "2.0.1",
33
    "@types/rimraf": "3.0.0",
J
Joe Haddad 已提交
34
    "@types/tar": "4.0.3",
35
    "@types/validate-npm-package-name": "3.0.0",
36
    "@vercel/ncc": "0.25.1",
37
    "async-retry": "1.3.1",
J
Joe Haddad 已提交
38 39 40 41
    "chalk": "2.4.2",
    "commander": "2.20.0",
    "cpy": "7.3.0",
    "cross-spawn": "6.0.5",
42
    "got": "10.7.0",
J
Joe Haddad 已提交
43
    "prompts": "2.1.0",
44
    "rimraf": "3.0.0",
J
Joe Haddad 已提交
45
    "tar": "4.4.10",
46
    "typescript": "3.8.3",
M
matamatanot 已提交
47
    "update-check": "1.5.4",
J
Joe Haddad 已提交
48
    "validate-npm-package-name": "3.0.0"
49 50 51
  },
  "engines": {
    "node": ">=10.13.0"
J
Joe Haddad 已提交
52
  }
J
Joe Haddad 已提交
53
}