mirror of
https://github.com/lucide-icons/lucide.git
synced 2026-08-29 10:28:26 +02:00
Bumps the preact-deps group with 2 updates: [@preact/preset-vite](https://github.com/preactjs/preset-vite) and [preact](https://github.com/preactjs/preact). Updates `@preact/preset-vite` from 2.10.5 to 2.10.6 - [Release notes](https://github.com/preactjs/preset-vite/releases) - [Changelog](https://github.com/preactjs/preset-vite/blob/main/CHANGELOG.md) - [Commits](https://github.com/preactjs/preset-vite/commits) Updates `preact` from 10.29.7 to 10.29.8 - [Release notes](https://github.com/preactjs/preact/releases) - [Commits](https://github.com/preactjs/preact/compare/10.29.7...10.29.8) --- updated-dependencies: - dependency-name: "@preact/preset-vite" dependency-version: 2.10.6 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: preact-deps - dependency-name: preact dependency-version: 10.29.8 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: preact-deps ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
67 lines
2.0 KiB
JSON
67 lines
2.0 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",
|
|
"module": "dist/esm/lucide-preact.mjs",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/lucide-preact.d.ts",
|
|
"import": "./dist/esm/lucide-preact.mjs",
|
|
"require": "./dist/cjs/lucide-preact.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",
|
|
"test:watch": "vitest watch"
|
|
},
|
|
"devDependencies": {
|
|
"@lucide/build-icons": "workspace:*",
|
|
"@lucide/rollup-plugins": "workspace:*",
|
|
"@lucide/shared": "workspace:*",
|
|
"@preact/preset-vite": "^2.10.6",
|
|
"@testing-library/jest-dom": "^6.9.1",
|
|
"@testing-library/preact": "^3.2.4",
|
|
"jest-serializer-html": "^7.1.0",
|
|
"preact": "^10.29.8",
|
|
"rollup": "^4.62.2",
|
|
"rollup-plugin-dts": "^6.4.1",
|
|
"typescript": "^5.9.3",
|
|
"vite": "^7.3.6"
|
|
},
|
|
"peerDependencies": {
|
|
"preact": "^10.27.2"
|
|
}
|
|
}
|