mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-15 21:27:42 +01:00
* update deps * Remove ignoredBuiltDependencies * Fix build errors * try this * update config * add coma * Try this * Revert import change * try this * add wasm import * Load wasm * try this * Revert nitro version change * Revert nitro config change
63 lines
1.9 KiB
JSON
63 lines
1.9 KiB
JSON
{
|
|
"name": "lucide-preact",
|
|
"description": "A Lucide icon library package for Preact applications.",
|
|
"version": "0.0.1",
|
|
"license": "ISC",
|
|
"homepage": "https://lucide.dev",
|
|
"bugs": "https://github.com/lucide-icons/lucide/issues",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/lucide-icons/lucide.git",
|
|
"directory": "packages/lucide-preact"
|
|
},
|
|
"keywords": [
|
|
"Lucide",
|
|
"Preact",
|
|
"Feather",
|
|
"Icons",
|
|
"Icon",
|
|
"SVG",
|
|
"Feather Icons",
|
|
"Fontawesome",
|
|
"Font Awesome"
|
|
],
|
|
"author": "Eric Fennis",
|
|
"amdName": "lucide-preact",
|
|
"main": "dist/cjs/lucide-preact.js",
|
|
"main:umd": "dist/umd/lucide-preact.js",
|
|
"module": "dist/esm/lucide-preact.js",
|
|
"unpkg": "dist/umd/lucide-preact.min.js",
|
|
"typings": "dist/lucide-preact.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"sideEffects": false,
|
|
"scripts": {
|
|
"build": "pnpm clean && pnpm copy:license && pnpm build:icons && pnpm build:bundles",
|
|
"copy:license": "cp ../../LICENSE ./LICENSE",
|
|
"clean": "rm -rf dist && rm -rf stats && rm -rf ./src/icons/*.js",
|
|
"build:icons": "build-icons --output=./src --templateSrc=./scripts/exportTemplate.mts --renderUniqueKey --withAliases --aliasesFileExtension=.ts --iconFileExtension=.ts --exportFileName=index.ts",
|
|
"build:bundles": "rollup -c ./rollup.config.mjs",
|
|
"test": "pnpm build:icons && vitest run",
|
|
"version": "pnpm version --git-tag-version=false"
|
|
},
|
|
"devDependencies": {
|
|
"@lucide/build-icons": "workspace:*",
|
|
"@lucide/rollup-plugins": "workspace:*",
|
|
"@lucide/shared": "workspace:*",
|
|
"@preact/preset-vite": "^2.10.2",
|
|
"@testing-library/jest-dom": "^6.1.4",
|
|
"@testing-library/preact": "^3.2.3",
|
|
"jest-serializer-html": "^7.1.0",
|
|
"preact": "^10.19.2",
|
|
"rollup": "^4.53.3",
|
|
"rollup-plugin-dts": "^6.2.3",
|
|
"typescript": "^5.8.3",
|
|
"vite": "^7.2.4",
|
|
"vitest": "^4.0.12"
|
|
},
|
|
"peerDependencies": {
|
|
"preact": "^10.27.2"
|
|
}
|
|
}
|