Files
lucide/tools/build-icons/package.json
dependabot[bot] 2f8257d8b4 chore(deps): bump svgo from 3.3.2 to 3.3.3 (#4119)
Bumps [svgo](https://github.com/svg/svgo) from 3.3.2 to 3.3.3.
- [Release notes](https://github.com/svg/svgo/releases)
- [Commits](https://github.com/svg/svgo/compare/v3.3.2...v3.3.3)

---
updated-dependencies:
- dependency-name: svgo
  dependency-version: 3.3.3
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-24 11:24:47 +02:00

48 lines
962 B
JSON

{
"name": "@lucide/build-icons",
"description": "A internal used package to build icon code files for the Lucide icon library packages.",
"version": "1.1.0",
"main": "index.ts",
"type": "module",
"scripts": {
"start": "node ./cli.ts"
},
"bin": {
"build-icons": "./cli.ts"
},
"engines": {
"node": ">= 23"
},
"exports": {
".": {
"import": "./index.ts",
"require": "./index.ts"
},
"./cli": {
"import": "./cli.ts",
"require": "./cli.ts"
},
"./utils/*": {
"import": "./utils/*.ts",
"require": "./utils/*.ts"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@lucide/helpers": "workspace:*",
"@types/minimist": "^1.2.5",
"@types/node": "^22"
},
"dependencies": {
"minimist": "^1.2.7",
"prettier": "2.7.1",
"svgo": "^3.3.3",
"svgson": "^5.2.1"
},
"peerDependencies": {
"@lucide/helpers": "*"
}
}