mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-15 21:37:43 +01:00
* Add useIconComponent, lucide-react * Add concept useIconComponent * add useIconComponents to packages * Add icon component * Add icon component * Add tests for react packages * Reset changes in icons * Add types * Add support for Icon components in Lucide Vue Next * update tests * Update tests * Enable Svelte component * Fix lucide-react-native tests * Update Solid package * update snapshots * Add docs * add docs * Update tests * Formatting * Formatting * Update package lock * Remove `useIconComponent` * Update guides * Update exports preact and solid package * Formatting * Format createIcons.ts * Add lucide lab repo link in docs
71 lines
2.3 KiB
JSON
71 lines
2.3 KiB
JSON
{
|
|
"name": "lucide-react-native",
|
|
"description": "A Lucide icon library package for React Native 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-react-native"
|
|
},
|
|
"keywords": [
|
|
"Lucide",
|
|
"React Native",
|
|
"Feather",
|
|
"Icons",
|
|
"Icon",
|
|
"SVG",
|
|
"Feather Icons",
|
|
"Fontawesome",
|
|
"Font Awesome"
|
|
],
|
|
"author": "Eric Fennis",
|
|
"amdName": "lucide-react-native",
|
|
"main": "dist/cjs/lucide-react-native.js",
|
|
"main:umd": "dist/umd/lucide-react-native.js",
|
|
"module": "dist/esm/lucide-react-native.js",
|
|
"unpkg": "dist/umd/lucide-react-native.min.js",
|
|
"typings": "dist/lucide-react-native.d.ts",
|
|
"react-native": "dist/esm/lucide-react-native.js",
|
|
"sideEffects": false,
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"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/*.ts",
|
|
"build:icons": "build-icons --output=./src --templateSrc=./scripts/exportTemplate.mjs --renderUniqueKey --iconFileExtension=.ts --exportFileName=index.ts --withAliases --aliasesFileExtension=.ts",
|
|
"build:bundles": "rollup -c ./rollup.config.mjs",
|
|
"test": "pnpm build:icons && vitest run",
|
|
"version": "pnpm version --git-tag-version=false"
|
|
},
|
|
"devDependencies": {
|
|
"@lucide/rollup-plugins": "workspace:*",
|
|
"@lucide/build-icons": "workspace:*",
|
|
"@lucide/shared": "workspace:*",
|
|
"@testing-library/jest-dom": "^6.1.6",
|
|
"@testing-library/react": "^14.1.2",
|
|
"@types/prop-types": "^15.7.5",
|
|
"@types/react": "^18.0.21",
|
|
"@vitejs/plugin-react": "^4.2.1",
|
|
"jest-serializer-html": "^7.1.0",
|
|
"react": "^18.0.0",
|
|
"react-dom": "^18.0.0",
|
|
"react-native": "^0.73.1",
|
|
"react-native-svg": "^15.0.0",
|
|
"rollup": "^4.9.2",
|
|
"rollup-plugin-dts": "^6.1.0",
|
|
"typescript": "^4.8.4",
|
|
"vite": "5.0.13",
|
|
"vitest": "^1.1.1"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^16.5.1 || ^17.0.0 || ^18.0.0",
|
|
"react-native": "*",
|
|
"react-native-svg": "^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0"
|
|
}
|
|
}
|