CoolFace
Apppublic

Umama-at-Bluchip/Quick-UI

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
package.json37 linesDownload Raw Back to env
1{2  "name": "@next/env",3  "version": "14.1.3",4  "keywords": [5    "react",6    "next",7    "next.js",8    "dotenv"9  ],10  "description": "Next.js dotenv file loading",11  "repository": {12    "type": "git",13    "url": "https://github.com/vercel/next.js",14    "directory": "packages/next-env"15  },16  "author": "Next.js Team <support@vercel.com>",17  "license": "MIT",18  "main": "dist/index.js",19  "types": "dist/index.d.ts",20  "files": [21    "dist"22  ],23  "scripts": {24    "dev": "ncc build ./index.ts -w -o dist/",25    "prerelease": "node ../../scripts/rm.mjs dist",26    "types": "tsc index.ts --declaration --emitDeclarationOnly --declarationDir dist --esModuleInterop",27    "release": "ncc build ./index.ts -o ./dist/ --minify --no-cache --no-source-map-register",28    "build": "pnpm release && pnpm types",29    "prepublishOnly": "cd ../../ && turbo run build"30  },31  "devDependencies": {32    "@vercel/ncc": "0.34.0",33    "dotenv": "16.3.1",34    "dotenv-expand": "10.0.0"35  }36}37