2021-05-23 13:13:18 +02:00
|
|
|
{
|
|
|
|
|
"name": "lucide-preact",
|
2021-10-01 09:19:36 +02: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",
|
|
|
|
|
"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",
|
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",
|
2023-01-17 08:04:34 +01:00
|
|
|
"build:icons": "build-icons --output=./src --templateSrc=./scripts/exportTemplate.mjs --renderUniqueKey --withAliases --aliasesFileExtension=.ts --iconFileExtension=.ts --exportFileName=index.ts",
|
2022-11-07 22:29:19 +01:00
|
|
|
"build:bundles": "rollup -c ./rollup.config.mjs",
|
2022-12-04 22:38:56 +01:00
|
|
|
"test": "vitest run",
|
2022-08-10 19:12:21 +02:00
|
|
|
"version": "pnpm version --git-tag-version=false"
|
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:*",
|
2023-11-24 13:59:12 +01:00
|
|
|
"@preact/preset-vite": "^2.7.0",
|
|
|
|
|
"@testing-library/jest-dom": "^6.1.4",
|
2024-01-03 11:38:06 +01:00
|
|
|
"@testing-library/preact": "^3.2.3",
|
|
|
|
|
"jest-serializer-html": "^7.1.0",
|
2023-11-24 13:59:12 +01:00
|
|
|
"preact": "^10.19.2",
|
2024-01-03 11:38:06 +01:00
|
|
|
"rollup": "^4.9.2",
|
|
|
|
|
"rollup-plugin-dts": "^6.1.0",
|
|
|
|
|
"typescript": "^5.3.3",
|
2024-04-05 08:45:48 +02:00
|
|
|
"vite": "5.0.13",
|
2024-01-03 11:38:06 +01:00
|
|
|
"vitest": "^1.1.1"
|
2021-05-23 13:13:18 +02:00
|
|
|
},
|
|
|
|
|
"peerDependencies": {
|
|
|
|
|
"preact": "^10.5.13"
|
|
|
|
|
}
|
|
|
|
|
}
|