@iconsets/svg-morpheus-ts
Version:
ESM TypeScript library enabling SVG icons to morph from one to the other. It implements Material Design's Delightful Details transitions. Refactored with modern TypeScript + Vite + pnpm stack. Supports both Chinese and English documentation.
64 lines • 1.75 kB
JSON
{
"name": "@iconsets/svg-morpheus-ts",
"prettyName": "SVG Morpheus",
"version": "1.3.1",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"description": "ESM TypeScript library enabling SVG icons to morph from one to the other. It implements Material Design's Delightful Details transitions. Refactored with modern TypeScript + Vite + pnpm stack. Supports both Chinese and English documentation.",
"homepage": "https://github.com/caixw/SVG-Morpheus-ts",
"repository": {
"type": "git",
"url": "https://github.com/caixw/SVG-Morpheus-ts.git"
},
"license": "MIT",
"author": {
"name": "caixw",
"url": "https://caixw.io"
},
"keywords": [
"svg",
"animation",
"morphing",
"icons",
"material-design"
],
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.0.0"
},
"devDependencies": {
"@types/node": "^20.19.9",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"terser": "^5.43.1",
"typescript": "^5.9.2",
"vite": "^7.1.1",
"vite-plugin-dts": "^3.9.1"
},
"dependencies": {
"colorjs.io": "^0.5.2"
},
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"demo": "pnpm build && vite --mode demo --host",
"build:demo": "pnpm build && GITHUB_PAGES=true vite build --mode demo",
"preview": "vite preview",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"type-check": "tsc --noEmit"
}
}