UNPKG

@37bytes/vite-build-time-environment

Version:

Vite plugin for integrating build-time environment variables like Git branch and commit hash.

61 lines 1.5 kB
{ "name": "@37bytes/vite-build-time-environment", "version": "0.1.0", "description": "Vite plugin for integrating build-time environment variables like Git branch and commit hash.", "license": "MIT", "author": "37bytes", "type": "module", "sideEffects": false, "repository": { "type": "git", "url": "git+https://github.com/37bytes/public-packages.git", "directory": "packages/vite-build-time-environment" }, "keywords": [ "vite", "vite-plugin", "build-time", "versioning", "environment-variables", "ci-cd", "build-info", "build-variables" ], "exports": { ".": { "import": { "types": "./build/index.d.mts", "default": "./build/index.mjs" }, "require": { "types": "./build/index.d.cts", "default": "./build/index.cjs" } } }, "main": "./build/index.cjs", "module": "./build/index.mjs", "types": "./build/index.d.mts", "files": [ "build", "client.d.ts", "README.md", "README_RU.md" ], "peerDependencies": { "vite": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-beta.0" }, "devDependencies": { "eslint": "9.39.2", "tsdown": "0.20.3", "typescript": "5.8.3", "@37bytes/bundler": "0.0.0", "@37bytes/code-style": "0.0.1" }, "scripts": { "build": "tsdown", "lint:typescript": "tsc --noEmit", "lint:eslint": "eslint --fix --max-warnings 0 .", "lint": "pnpm lint:typescript && pnpm lint:eslint" } }