rsnext/packages/next-env/package.json
2021-10-06 10:59:18 -04:00

37 lines
965 B
JSON

{
"name": "@next/env",
"version": "11.1.3-canary.46",
"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": {
"dev": "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",
"@zeit/ncc": "0.20.4",
"dotenv": "8.2.0",
"dotenv-expand": "5.1.0"
}
}