Files
svgr/packages/cli/package.json
Greg Bergé 2536e19eca v6.1.0
2021-12-01 22:50:16 +01:00

49 lines
1.1 KiB
JSON

{
"name": "@svgr/cli",
"description": "SVGR command line.",
"version": "6.1.0",
"repository": "https://github.com/gregberge/svgr/tree/master/packages/cli",
"author": "Greg Bergé <berge.greg@gmail.com>",
"publishConfig": {
"access": "public"
},
"keywords": [
"svgr",
"svg",
"react",
"cli"
],
"engines": {
"node": ">=10"
},
"homepage": "https://react-svgr.com",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/gregberge"
},
"license": "MIT",
"bin": {
"svgr": "./bin/svgr"
},
"scripts": {
"reset": "rm -rf dist",
"build": "rollup -c ../../build/rollup.config.js",
"prepublishOnly": "npm run reset && npm run build"
},
"dependencies": {
"@svgr/core": "^6.1.0",
"@svgr/plugin-jsx": "^6.1.0",
"@svgr/plugin-prettier": "^6.0.0",
"@svgr/plugin-svgo": "^6.1.0",
"camelcase": "^6.2.0",
"chalk": "^4.1.2",
"commander": "^8.2.0",
"dashify": "^2.0.0",
"glob": "^7.1.7"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"del": "^6.0.0"
}
}