mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-15 21:27:42 +01:00
* update deps * Remove ignoredBuiltDependencies * Fix build errors * try this * update config * add coma * Try this * Revert import change * try this * add wasm import * Load wasm * try this * Revert nitro version change * Revert nitro config change
80 lines
2.6 KiB
JSON
80 lines
2.6 KiB
JSON
{
|
|
"name": "lucide-svelte",
|
|
"description": "A Lucide icon library package for Svelte 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-svelte"
|
|
},
|
|
"keywords": [
|
|
"Lucide",
|
|
"Svelte",
|
|
"Feather",
|
|
"Icons",
|
|
"Icon",
|
|
"SVG",
|
|
"Feather Icons",
|
|
"Fontawesome",
|
|
"Font Awesome"
|
|
],
|
|
"author": "Eric Fennis",
|
|
"type": "module",
|
|
"main": "dist/lucide-svelte.js",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/lucide-svelte.d.ts",
|
|
"svelte": "./dist/lucide-svelte.js",
|
|
"default": "./dist/lucide-svelte.js"
|
|
},
|
|
"./icons": {
|
|
"types": "./dist/lucide-svelte.d.ts",
|
|
"svelte": "./dist/lucide-svelte.js"
|
|
},
|
|
"./icons/*": {
|
|
"types": "./dist/icons/*.svelte.d.ts",
|
|
"svelte": "./dist/icons/*.js",
|
|
"default": "./dist/icons/*.js"
|
|
}
|
|
},
|
|
"typings": "dist/lucide-svelte.d.ts",
|
|
"sideEffects": false,
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "pnpm clean && pnpm copy:license && pnpm build:icons && pnpm build:package && pnpm build:license",
|
|
"copy:license": "cp ../../LICENSE ./LICENSE",
|
|
"clean": "rm -rf dist && rm -rf stats && rm -rf ./src/icons/*.svelte && rm -f index.js",
|
|
"build:icons": "build-icons --output=./src --templateSrc=./scripts/exportTemplate.mts --exportFileName=index.ts --iconFileExtension=.svelte --importImportFileExtension=.svelte --separateIconFileExport --separateIconFileExportExtension=.ts --withAliases --aliasesFileExtension=.ts --separateAliasesFile --separateAliasesFileExtension=.ts --aliasImportFileExtension=.js --pretty=false",
|
|
"build:package": "svelte-package --input ./src",
|
|
"build:license": "node ./scripts/appendBlockComments.mts",
|
|
"test": "pnpm copy:license && pnpm build:icons && vitest run",
|
|
"test:watch": "vitest watch",
|
|
"version": "pnpm version --git-tag-version=false"
|
|
},
|
|
"devDependencies": {
|
|
"@lucide/build-icons": "workspace:*",
|
|
"@lucide/helpers": "workspace:*",
|
|
"@sveltejs/package": "^2.2.3",
|
|
"@sveltejs/vite-plugin-svelte": "^2.4.2",
|
|
"@testing-library/jest-dom": "^6.1.4",
|
|
"@testing-library/svelte": "^4.0.2",
|
|
"@tsconfig/svelte": "^5.0.0",
|
|
"jest-serializer-html": "^7.1.0",
|
|
"jsdom": "^20.0.3",
|
|
"svelte": "^4.2.19",
|
|
"svelte-check": "^3.4.4",
|
|
"svelte-preprocess": "^5.0.4",
|
|
"typescript": "^5.8.3",
|
|
"vite": "^7.2.4",
|
|
"vitest": "^4.0.12"
|
|
},
|
|
"peerDependencies": {
|
|
"svelte": "^3 || ^4 || ^5.0.0-next.42"
|
|
}
|
|
}
|