@svgd/core
Version:
An SVG optimization tool that converts SVG files into a single path 'd' attribute string for efficient storage and rendering.
59 lines (58 loc) • 1.3 kB
JSON
{
"name": "@svgd/core",
"version": "0.3.27",
"description": "An SVG optimization tool that converts SVG files into a single path 'd' attribute string for efficient storage and rendering.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "vitest run tests/stories/stories.test.ts",
"docs": "codools --root . --output docs/code.md && tsx scripts/useCasesDoc",
"lint": "eslint"
},
"author": "",
"license": "MIT",
"private": false,
"devDependencies": {
"@svgd/mocks": "*",
"@types/node": "^18.19.71",
"codools": "^0.2.17",
"svgo": "^3.3.2",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.5"
},
"keywords": [
"svg",
"svgd",
"svgo",
"path",
"pathD",
"optimize",
"compression",
"svg-to-path",
"d-attribute",
"svg-conversion",
"svg-minification",
"svg-parser",
"svg-storage",
"svg-icons",
"vector-graphics",
"svgo-plugin",
"svg-transform",
"svg-utils"
]
}