mirror of
https://github.com/iconify/iconify.git
synced 2024-12-13 22:18:24 +00:00
62 lines
1.6 KiB
JSON
62 lines
1.6 KiB
JSON
{
|
|
"name": "@iconify/svelte",
|
|
"description": "Iconify icon component for Svelte.",
|
|
"author": "Vjacheslav Trushkin",
|
|
"version": "2.1.0-beta.2",
|
|
"license": "MIT",
|
|
"bugs": "https://github.com/iconify/iconify/issues",
|
|
"homepage": "https://github.com/iconify/iconify",
|
|
"funding": "http://github.com/sponsors/cyberalien",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/iconify/iconify.git",
|
|
"directory": "packages/svelte"
|
|
},
|
|
"svelte": "dist/Icon.svelte",
|
|
"module": "dist/index.mjs",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
"./*": "./*",
|
|
".": {
|
|
"import": "./dist/index.mjs",
|
|
"svelte": "./dist/Icon.svelte",
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"./offline": {
|
|
"import": "./dist/offline.mjs",
|
|
"svelte": "./dist/OfflineIcon.svelte",
|
|
"types": "./dist/offline.d.ts",
|
|
"default": "./dist/offline.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "node build",
|
|
"build:tsc": "tsc -b",
|
|
"build:bundles": "rollup -c rollup.config.js",
|
|
"build:api": "node build --only-api",
|
|
"test": "jest"
|
|
},
|
|
"devDependencies": {
|
|
"@iconify/core": "^1.2.0-beta.3",
|
|
"@iconify/utils": "^1.0.9",
|
|
"@microsoft/api-extractor": "^7.15.0",
|
|
"@rollup/plugin-node-resolve": "^10.0.0",
|
|
"@rollup/plugin-typescript": "^8.2.1",
|
|
"@testing-library/jest-dom": "^5.14.1",
|
|
"@testing-library/svelte": "^3.0.3",
|
|
"@tsconfig/svelte": "^1.0.10",
|
|
"@types/jest": "^27.0.2",
|
|
"rollup": "^2.33.3",
|
|
"rollup-plugin-svelte": "^6.1.1",
|
|
"svelte": "^3.43.0",
|
|
"svelte-jester": "^2.1.5",
|
|
"svelte-preprocess": "^4.9.5",
|
|
"ts-jest": "^27.0.5"
|
|
},
|
|
"dependencies": {
|
|
"cross-fetch": "^3.1.4"
|
|
}
|
|
}
|