vite-plugin-es-toolkit
Version:
Vite plugin for replacing Lodash with es-toolkit
64 lines • 1.52 kB
JSON
{
"name": "vite-plugin-es-toolkit",
"version": "1.0.1",
"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": "1.9.0",
"es-toolkit": "^1.20.0",
"husky": "^9.0.0",
"typescript": "^5.5.2",
"vite": "^6.2.4",
"vitest": "^3.0.5"
},
"peerDependencies": {
"es-toolkit": "^1.11.0",
"vite": ">=2.3.0 <8.0.0"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"files": [
"dist",
"src"
],
"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.9.1"
}