package.json 1.2 KB
Newer Older
J
Joe Haddad 已提交
1 2
{
  "name": "create-next-app",
J
Joe Haddad 已提交
3
  "version": "9.0.8-canary.2",
J
Joe Haddad 已提交
4 5 6 7 8 9 10 11 12 13 14 15
  "keywords": [
    "react",
    "next",
    "next.js"
  ],
  "description": "Create Next.js-powered React apps with one command",
  "repository": {
    "type": "git",
    "url": "https://github.com/zeit/next.js",
    "directory": "packages/create-next-app"
  },
  "author": "Next.js Team <support@zeit.co>",
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 24 25 26 27
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "ncc build ./index.ts -w -o dist/",
    "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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
  "devDependencies": {
    "@types/got": "9.6.2",
    "@types/node": "^12.6.8",
    "@types/prompts": "2.0.1",
    "@types/tar": "4.0.3",
    "@zeit/ncc": "^0.20.4",
    "chalk": "2.4.2",
    "commander": "2.20.0",
    "cpy": "7.3.0",
    "cross-spawn": "6.0.5",
    "got": "9.6.0",
    "make-dir": "3.0.0",
    "promisepipe": "3.0.0",
    "prompts": "2.1.0",
    "rimraf": "2.6.3",
    "tar": "4.4.10",
    "typescript": "^3.5.3",
    "update-check": "1.5.3",
    "validate-npm-package-name": "3.0.0"
  }
J
Joe Haddad 已提交
49
}