mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-15 21:47:43 +01:00
* 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
48 lines
962 B
JSON
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": "*"
|
|
}
|
|
}
|