mirror of
https://github.com/iconify/iconify.git
synced 2024-11-09 23:00:56 +00:00
66 lines
1.7 KiB
JSON
66 lines
1.7 KiB
JSON
{
|
|
"name": "@iconify/svelte",
|
|
"description": "Iconify icon component for Svelte.",
|
|
"author": "Vjacheslav Trushkin",
|
|
"version": "4.0.0-beta.2",
|
|
"publishConfig": {
|
|
"tag": "next"
|
|
},
|
|
"license": "MIT",
|
|
"bugs": "https://github.com/iconify/iconify/issues",
|
|
"homepage": "https://github.com/iconify/iconify",
|
|
"funding": "https://github.com/sponsors/cyberalien",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/iconify/iconify.git",
|
|
"directory": "components/svelte"
|
|
},
|
|
"svelte": "dist/Icon.svelte",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"svelte": "./dist/Icon.svelte",
|
|
"types": "./dist/index.d.ts"
|
|
},
|
|
"./dist/OfflineIcon.svelte": {
|
|
"svelte": "./dist/OfflineIcon.svelte",
|
|
"types": "./dist/offline.d.ts"
|
|
},
|
|
"./*": "./*"
|
|
},
|
|
"scripts": {
|
|
"cleanup": "rimraf lib dist",
|
|
"prebuild": "pnpm run cleanup",
|
|
"build": "node build",
|
|
"build:tsc": "tsc -b",
|
|
"build:bundles": "rollup -c rollup.config.mjs",
|
|
"build:api": "node build --only-api",
|
|
"test": "vitest"
|
|
},
|
|
"dependencies": {
|
|
"@iconify/types": "workspace:^"
|
|
},
|
|
"devDependencies": {
|
|
"@iconify/core": "workspace:^",
|
|
"@iconify/utils": "workspace:^",
|
|
"@microsoft/api-extractor": "^7.39.0",
|
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
"@rollup/plugin-typescript": "^11.1.5",
|
|
"@sveltejs/vite-plugin-svelte": "^2.5.3",
|
|
"@testing-library/jest-dom": "^6.1.5",
|
|
"@testing-library/svelte": "^4.0.5",
|
|
"@tsconfig/svelte": "^5.0.2",
|
|
"@types/jest": "^29.5.11",
|
|
"@types/node": "^20.10.5",
|
|
"rimraf": "^5.0.5",
|
|
"rollup": "^4.9.1",
|
|
"rollup-plugin-svelte": "^7.1.6",
|
|
"svelte": "4.2.8",
|
|
"svelte-preprocess": "^5.1.3",
|
|
"vitest": "^1.1.0"
|
|
},
|
|
"peerDependencies": {
|
|
"svelte": ">4.0.0"
|
|
}
|
|
}
|