svg-to-url
Version:
A simple tool to convert svg file to data url
47 lines (46 loc) • 882 B
JSON
{
"name": "svg-to-url",
"version": "4.0.0",
"description": "A simple tool to convert svg file to data url",
"repository": "zillding/svg-to-url",
"type": "module",
"bin": {
"svg-to-url": "./cli.js"
},
"exports": {
"types": "./index.d.ts",
"default": "./index.js"
},
"engines": {
"node": ">=18"
},
"scripts": {
"prettier": "prettier --write .",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"release": "np"
},
"files": [
"index.js",
"index.d.ts",
"cli.js",
"string-to-url.js"
],
"keywords": [
"svg",
"data",
"url"
],
"author": "Zill Ding",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"clipboardy": "^4.0.0",
"commander": "^12.0.0",
"svgo": "^3.3.2"
},
"devDependencies": {
"jest": "^29.7.0",
"np": "^10.0.5",
"prettier": "^3.2.5"
}
}