package.json 966 字节
Newer Older
1 2
{
  "name": "@next/env",
J
JJ Kasper 已提交
3
  "version": "10.0.4-canary.1",
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
  "keywords": [
    "react",
    "next",
    "next.js",
    "dotenv"
  ],
  "description": "Next.js dotenv file loading",
  "repository": {
    "type": "git",
    "url": "https://github.com/vercel/next.js",
    "directory": "packages/next-env"
  },
  "author": "Next.js Team <support@vercel.com>",
  "license": "MIT",
  "main": "dist/index.js",
  "types": "types/index.d.ts",
  "files": [
    "dist",
    "types"
  ],
  "scripts": {
    "build": "ncc build ./index.ts -w -o dist/",
    "prerelease": "rimraf ./dist/",
    "types": "tsc index.ts --declaration --emitDeclarationOnly --declarationDir types --esModuleInterop",
    "release": "ncc build ./index.ts -o ./dist/ --minify --no-cache --no-source-map-register",
    "prepublish": "yarn release && yarn types"
  },
  "devDependencies": {
    "@types/dotenv": "8.2.0",
33
    "@zeit/ncc": "0.20.4",
34 35 36 37
    "dotenv": "8.2.0",
    "dotenv-expand": "5.1.0"
  }
}