UNPKG

svelte-animated-icons

Version:

A collection of animated SVG icons for Svelte with customizable draw transitions, events, and accessibility features. Each icon supports hover/click animations, customizable colors, sizes, and stroke widths.

105 lines 3.32 kB
{ "name": "svelte-animated-icons", "version": "0.7.0", "description": "A collection of animated SVG icons for Svelte with customizable draw transitions, events, and accessibility features. Each icon supports hover/click animations, customizable colors, sizes, and stroke widths.", "license": "MIT", "homepage": "https://svelte-animated-icons.codewithshin.com/", "author": { "name": "Shinichi Okada", "email": "connect@codewithshin.com", "url": "https://codewithshin.com" }, "repository": { "type": "git", "url": "git+https://github.com/shinokada/svelte-animated-icons.git" }, "bugs": "https://github.com/shinokada/svelte-animated-icons/issues", "keywords": [ "svelte", "svelte5", "icons", "svg", "animated-icons", "draw-animation", "accessible-icons", "icon-library", "svg-icons", "ui-components", "customizable-icons" ], "files": [ "dist", "!dist/**/*.test.*", "!dist/**/*.spec.*" ], "sideEffects": [ "**/*.css" ], "svelte": "./dist/index.js", "types": "./dist/index.d.ts", "type": "module", "peerDependencies": { "svelte": "^5.0.0" }, "devDependencies": { "@changesets/cli": "^2.27.10", "@playwright/test": "^1.49.0", "@sveltejs/adapter-vercel": "^5.4.8", "@sveltejs/kit": "^2.8.2", "@sveltejs/package": "^2.3.7", "@sveltejs/vite-plugin-svelte": "^4.0.1", "@svitejs/changesets-changelog-github-compact": "^1.2.0", "@types/eslint": "^9.6.1", "autoprefixer": "^10.4.20", "eslint": "^9.15.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-svelte": "^2.46.0", "globals": "^15.12.0", "highlight.js": "^11.10.0", "prettier": "^3.3.3", "prettier-plugin-svelte": "^3.3.2", "prettier-plugin-tailwindcss": "^0.6.9", "publint": "^0.2.12", "runatics": "^0.1.3", "runes-meta-tags": "^0.4.2", "runes-webkit": "^0.9.47", "svelte": "^5.2.7", "svelte-5-ui-lib": "^0.12.0", "svelte-check": "^4.1.0", "svelte-lib-helpers": "^0.4.16", "svelte-rune-highlight": "^0.5.13", "tailwind-merge": "^2.5.4", "tailwindcss": "^3.4.15", "typescript": "^5.7.2", "typescript-eslint": "^8.15.0", "vite": "^5.4.11", "vitest": "^2.1.5" }, "exports": { ".": { "types": "./dist/index.d.ts", "svelte": "./dist/index.js" } }, "scripts": { "dev": "vite dev", "build": "vite build && npm run package", "preview": "vite preview", "package": "svelte-kit sync && svelte-package && publint", "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", "format": "prettier --write .", "lint": "prettier --check . && eslint .", "test:unit": "vitest", "test": "npm run test:unit -- --run && npm run test:e2e", "test:e2e": "playwright test", "gen:exports": "svelte-lib-helpers exports", "gen:docs5": "svelte-lib-helpers docs5", "gen:docs5FromType": "svelte-lib-helpers docs5FromType", "copy:packagejson": "svelte-lib-helpers package", "lib-helpers": "pnpm format && pnpm gen:docs5 && pnpm build && pnpm copy:packagejson", "ch": "npx changeset", "cv": "npx changeset version", "cp": "npx changeset publish" } }