Files
lucide/tools/build-icons/package.json
Eric Fennis 3e644fda2d chore(scripts): Refactor scripts to typescript (#3316)
* Adjust typescript types

* adjust types

* fix types in all helper files

* Fix types

* Migrate js files to ts files

* Refactor to TS files

* Rename extentions

* Adjust imports

* Fix builds

* Update lockfile

* Fix last typescript migration

* Fix entry path @lucide/outline-svg

* Fix types

* add checkout step

* format files

* Format files
2025-06-18 15:47:24 +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.0.0",
"svgson": "^5.2.1"
},
"peerDependencies": {
"@lucide/helpers": "*"
}
}