svgfusion-cmd
Version:
Command-line interface for converting SVG files into React and Vue 3 components with TypeScript support and batch processing capabilities.
90 lines (89 loc) • 2.21 kB
JSON
{
"name": "svgfusion-cmd",
"version": "1.4.0",
"description": "Command-line interface for converting SVG files into React and Vue 3 components with TypeScript support and batch processing capabilities.",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"author": "lolvoid",
"homepage": "https://svgfusion.netlify.app",
"keywords": [
"svg",
"react",
"vue",
"vue3",
"component",
"converter",
"cli",
"command-line",
"jsx",
"tsx",
"typescript",
"batch",
"build-tool",
"icon"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"README.md"
],
"bin": {
"svgfusion-cmd": "dist/main.js"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist",
"release": "semantic-release",
"release:dry": "semantic-release --dry-run"
},
"dependencies": {
"commander": "^11.1.0",
"figlet": "^1.7.0",
"svgfusion-core": "1.3.3",
"svgfusion-react": "1.2.3",
"svgfusion-utils": "1.1.3",
"svgfusion-vue": "1.2.3"
},
"devDependencies": {
"@eslint/js": "^9.31.0",
"@jest/globals": "^30.0.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.3",
"@semantic-release/npm": "^12.0.2",
"@types/jest": "^30.0.0",
"@types/node": "^20.0.0",
"eslint": "^9.31.0",
"jest": "^30.0.4",
"prettier": "^3.6.2",
"semantic-release": "^24.2.5",
"semantic-release-monorepo": "^8.0.2",
"tsup": "^8.5.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.37.0"
},
"engines": {
"node": ">=18.0.0"
}
}