mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-28 18:37:22 +01:00
74 lines
2.3 KiB
JSON
74 lines
2.3 KiB
JSON
{
|
|
"name": "lucide-solid",
|
|
"description": "A Lucide icon library package for Solid 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-solid"
|
|
},
|
|
"keywords": [
|
|
"Lucide",
|
|
"Angular",
|
|
"Feather",
|
|
"Icons",
|
|
"Icon",
|
|
"SVG",
|
|
"Feather Icons",
|
|
"Fontawesome",
|
|
"Font Awesome"
|
|
],
|
|
"author": "Eric Fennis",
|
|
"source": "src/lucide-solid.ts",
|
|
"main": "dist/cjs/lucide-solid.js",
|
|
"module": "dist/esm/lucide-solid.js",
|
|
"types": "dist/types/lucide-solid.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/types/lucide-solid.d.ts",
|
|
"solid": "./dist/source/lucide-solid.js",
|
|
"import": "./dist/esm/lucide-solid.js",
|
|
"browser": "./dist/esm/lucide-solid.js",
|
|
"require": "./dist/cjs/lucide-solid.js",
|
|
"node": "./dist/cjs/lucide-solid.js"
|
|
}
|
|
},
|
|
"sideEffects": false,
|
|
"scripts": {
|
|
"build": "pnpm clean && pnpm copy:license && pnpm build:icons && pnpm build:bundle && pnpm build:version",
|
|
"copy:license": "cp ../../LICENSE ./LICENSE",
|
|
"clean": "rm -rf dist && rm -rf stats && rm -rf ./src/icons/*.js",
|
|
"build:transpile": "tsc --jsx preserve -t es2020 --rootDir src --outDir dist --noEmit false",
|
|
"build:version": "node ./scripts/replaceVersion.mjs",
|
|
"build:bundle": "rollup -c rollup.config.mjs",
|
|
"build:icons": "build-icons --output=./src --templateSrc=./scripts/exportTemplate.mjs --renderUniqueKey --withAliases --aliasesFileExtension=.ts --iconFileExtension=.tsx --exportFileName=index.ts",
|
|
"test": "vitest run",
|
|
"version": "pnpm version --git-tag-version=false"
|
|
},
|
|
"devDependencies": {
|
|
"@atomico/rollup-plugin-sizes": "^1.1.4",
|
|
"@lucide/build-icons": "workspace:*",
|
|
"@solidjs/testing-library": "^0.8.4",
|
|
"@testing-library/jest-dom": "^6.1.4",
|
|
"babel-preset-solid": "^1.5.4",
|
|
"jsdom": "^23.0.1",
|
|
"rollup": "^3.5.1",
|
|
"rollup-plugin-license": "^3.0.1",
|
|
"rollup-preset-solid": "^2.0.1",
|
|
"solid-js": "^1.7.7",
|
|
"typescript": "^4.9.4",
|
|
"vite": "^4.4.12",
|
|
"vite-plugin-solid": "^2.8.0",
|
|
"vitest": "^1.0.4"
|
|
},
|
|
"peerDependencies": {
|
|
"solid-js": "^1.4.7"
|
|
}
|
|
}
|