UNPKG

vite-plugin-es-toolkit

Version:

Vite plugin for replacing Lodash with es-toolkit

65 lines 1.55 kB
{ "name": "vite-plugin-es-toolkit", "version": "1.1.0", "description": "Vite plugin for replacing Lodash with es-toolkit", "type": "module", "sideEffects": false, "main": "./dist/index.js", "source": "./src/index.ts", "types": "./dist/index.d.ts", "exports": { ".": { "import": "./dist/index.js" }, "./*": "./*" }, "scripts": { "build": "tsc --project tsconfig.build.json", "clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true })\"", "format": "biome format", "lint": "biome lint", "prepack": "yarn clean && yarn build", "test": "yarn lint && yarn tsc && yarn format && yarn unit", "tsc": "tsc", "unit": "vitest" }, "keywords": [ "vite", "vite-plugin", "plugin", "lodash", "es-toolkit" ], "author": { "name": "Wojciech Maj", "email": "kontakt@wojtekmaj.pl" }, "license": "MIT", "devDependencies": { "@biomejs/biome": "2.2.2", "es-toolkit": "^1.20.0", "husky": "^9.0.0", "typescript": "^5.9.2", "vite": "^7.1.11", "vitest": "^4.0.1" }, "peerDependencies": { "es-toolkit": "^1.11.0", "vite": ">=2.3.0 <9.0.0" }, "publishConfig": { "access": "public", "provenance": true }, "files": [ "dist/**/*", "src/**/*", "!**/*.spec.ts" ], "repository": { "type": "git", "url": "git+https://github.com/wojtekmaj/vite-plugin-es-toolkit.git" }, "funding": "https://github.com/wojtekmaj/vite-plugin-es-toolkit?sponsor=1", "packageManager": "yarn@4.10.3" }