2021-05-23 13:13:18 +02:00
|
|
|
{
|
|
|
|
|
"name": "lucide-preact",
|
2025-04-21 04:45:14 -04:00
|
|
|
"description": "A Lucide icon library package for Preact applications.",
|
2023-07-02 14:46:53 +02:00
|
|
|
"version": "0.0.1",
|
2021-05-23 13:13:18 +02:00
|
|
|
"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"
|
|
|
|
|
},
|
2023-10-18 09:50:18 +02:00
|
|
|
"keywords": [
|
|
|
|
|
"Lucide",
|
2024-01-03 11:38:06 +01:00
|
|
|
"Preact",
|
2023-10-18 09:50:18 +02:00
|
|
|
"Feather",
|
|
|
|
|
"Icons",
|
|
|
|
|
"Icon",
|
|
|
|
|
"SVG",
|
|
|
|
|
"Feather Icons",
|
|
|
|
|
"Fontawesome",
|
|
|
|
|
"Font Awesome"
|
|
|
|
|
],
|
2021-05-23 13:13:18 +02:00
|
|
|
"author": "Eric Fennis",
|
|
|
|
|
"amdName": "lucide-preact",
|
|
|
|
|
"main": "dist/cjs/lucide-preact.js",
|
2026-04-23 17:00:02 +02:00
|
|
|
"module": "dist/esm/lucide-preact.mjs",
|
2026-03-24 03:07:36 -05:00
|
|
|
"exports": {
|
|
|
|
|
".": {
|
|
|
|
|
"types": "./dist/lucide-preact.d.ts",
|
2026-04-23 17:00:02 +02:00
|
|
|
"import": "./dist/esm/lucide-preact.mjs",
|
2026-03-24 03:07:36 -05:00
|
|
|
"require": "./dist/cjs/lucide-preact.js"
|
|
|
|
|
}
|
|
|
|
|
},
|
2021-05-23 13:13:18 +02:00
|
|
|
"typings": "dist/lucide-preact.d.ts",
|
2022-08-18 10:25:46 +00:00
|
|
|
"files": [
|
|
|
|
|
"dist"
|
|
|
|
|
],
|
2021-05-24 23:02:35 +02:00
|
|
|
"sideEffects": false,
|
2021-05-23 13:13:18 +02:00
|
|
|
"scripts": {
|
2024-01-03 11:38:06 +01:00
|
|
|
"build": "pnpm clean && pnpm copy:license && pnpm build:icons && pnpm build:bundles",
|
2022-08-10 09:10:53 +02:00
|
|
|
"copy:license": "cp ../../LICENSE ./LICENSE",
|
2021-05-23 13:13:18 +02:00
|
|
|
"clean": "rm -rf dist && rm -rf stats && rm -rf ./src/icons/*.js",
|
2025-06-18 15:47:24 +02:00
|
|
|
"build:icons": "build-icons --output=./src --templateSrc=./scripts/exportTemplate.mts --renderUniqueKey --withAliases --aliasesFileExtension=.ts --iconFileExtension=.ts --exportFileName=index.ts",
|
2022-11-07 22:29:19 +01:00
|
|
|
"build:bundles": "rollup -c ./rollup.config.mjs",
|
2024-04-24 09:08:01 +02:00
|
|
|
"test": "pnpm build:icons && vitest run",
|
2026-06-16 16:24:07 +02:00
|
|
|
"test:watch": "vitest watch"
|
2021-05-23 13:13:18 +02:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2023-01-17 08:04:34 +01:00
|
|
|
"@lucide/build-icons": "workspace:*",
|
2023-11-24 13:59:12 +01:00
|
|
|
"@lucide/rollup-plugins": "workspace:*",
|
2024-03-06 21:03:12 +01:00
|
|
|
"@lucide/shared": "workspace:*",
|
2026-07-16 14:38:12 +02:00
|
|
|
"@preact/preset-vite": "^2.10.5",
|
|
|
|
|
"@testing-library/jest-dom": "^6.9.1",
|
|
|
|
|
"@testing-library/preact": "^3.2.4",
|
2024-01-03 11:38:06 +01:00
|
|
|
"jest-serializer-html": "^7.1.0",
|
2026-07-16 14:38:12 +02:00
|
|
|
"preact": "^10.29.7",
|
|
|
|
|
"rollup": "^4.62.2",
|
|
|
|
|
"rollup-plugin-dts": "^6.4.1",
|
|
|
|
|
"typescript": "^5.9.3",
|
|
|
|
|
"vite": "^7.3.6"
|
2021-05-23 13:13:18 +02:00
|
|
|
},
|
|
|
|
|
"peerDependencies": {
|
2025-11-27 10:50:19 +01:00
|
|
|
"preact": "^10.27.2"
|
2021-05-23 13:13:18 +02:00
|
|
|
}
|
|
|
|
|
}
|