@cardog-icons/core
Version:
Core functionality for Cardog Icons - SVG optimization and processing
55 lines • 1.19 kB
JSON
{
"name": "@cardog-icons/core",
"version": "1.2.0",
"description": "Core functionality for Cardog Icons - SVG optimization and processing",
"private": false,
"license": "MIT",
"author": "Cardog",
"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",
"optimized",
"README.md",
"LICENSE"
],
"keywords": [
"icons",
"svg",
"car",
"brand",
"logos",
"automotive"
],
"dependencies": {
"svgo": "^3.2.0",
"glob": "^10.3.10"
},
"devDependencies": {
"@types/node": "^20.11.30",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.4.3"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"dev": "tsup src/index.ts --format esm,cjs --dts --watch",
"clean": "rm -rf dist",
"lint": "eslint \"src/**/*.ts\"",
"test": "jest",
"optimize": "ts-node scripts/optimize-svg.ts"
}
}