{
	"name": "svg-symbol-sprite",
	"version": "1.5.2",
	"description": "A script to generate a symbol sprite from SVG files",
	"keywords": [
		"Sprite",
		"SVG Sprite",
		"SVG Symbol",
		"Image sprite",
		"SVG Sprite Generator",
		"Image sprite Generator",
		"SVG Symbol Sprite Generator"
	],
	"homepage": "https://atanas.info/portfolio/open-source/svg-symbol-sprite",
	"bugs": {
		"url": "https://github.com/scriptex/svg-symbol-sprite/issues",
		"email": "hi@atanas.info"
	},
	"license": "MIT",
	"author": "Atanas Atanasov <hi@atanas.info> (https://atanas.info)",
	"funding": "https://github.com/sponsors/scriptex",
	"main": "dist/index.js",
	"repository": {
		"type": "git",
		"url": "github:scriptex/svg-symbol-sprite"
	},
	"scripts": {
		"build": "tsc --skipLibCheck",
		"test": "ts-node test/index.ts",
		"release-minor": "release-it minor --ci",
		"release-patch": "release-it patch --ci",
		"release-major": "release-it major --ci",
		"changelog-local": "npx auto-changelog"
	},
	"bin": {
		"svg-symbol-sprite": "dist/index.js"
	},
	"engines": {
		"node": ">=14.0.0"
	},
	"dependencies": {
		"cheerio": "1.0.0-rc.12",
		"commander": "^12.0.0",
		"svgo": "^3.0.0"
	},
	"devDependencies": {
		"@types/cheerio": "0.22.35",
		"@types/csso": "5.0.4",
		"@types/node": "20.12.11",
		"@types/svg-parser": "2.0.6",
		"@types/tape": "5.6.4",
		"release-it": "17.2.1",
		"svg-parser": "2.0.4",
		"tape": "5.7.5",
		"ts-node": "10.9.2",
		"tslib": "2.6.2",
		"typescript": "5.4.5"
	},
	"peerDependencies": {
		"cheerio": "*",
		"commander": "^12.0.0",
		"svgo": "^3.0.0"
	},
	"release-it": {
		"hooks": {
			"after:release": "yarn changelog-local && git add CHANGELOG.md && git commit -m \"Update CHANGELOG.md with the latest changes\" --no-verify && git push"
		},
		"use": "pkg.version",
		"git": {
			"changelog": "git log --pretty=format:\"* %s (%h)\" ${from}...${to}",
			"requireCleanWorkingDir": true,
			"requireBranch": false,
			"requireUpstream": false,
			"requireCommits": false,
			"addUntrackedFiles": false,
			"commit": true,
			"commitMessage": "Release ${version}",
			"commitArgs": [
				"--no-verify"
			],
			"tag": true,
			"tagName": "${version}",
			"tagAnnotation": "Release ${version}",
			"tagArgs": [],
			"push": true,
			"pushArgs": [
				"--follow-tags"
			],
			"pushRepo": ""
		},
		"github": {
			"release": false
		},
		"gitlab": {
			"release": false
		},
		"npm": {
			"publish": false
		}
	}
}
