@evcc/icons
Version:
A collection of evcc icons for vehicles, meters, chargers, smartswitches, and heating systems with web components and SVG registry.
80 lines (79 loc) • 2.27 kB
JSON
{
"name": "@evcc/icons",
"version": "0.5.11",
"description": "A collection of evcc icons for vehicles, meters, chargers, smartswitches, and heating systems with web components and SVG registry.",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./registry": {
"types": "./dist/svg-registry.d.ts",
"import": "./dist/svg-registry.js",
"require": "./dist/svg-registry.js"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "npm run clean && npm run build:registry && npm run build:components && npm run build:docs",
"build:components": "tsc",
"build:docs": "tsx scripts/build-docs.ts",
"build:registry": "tsx scripts/build-svg-registry.ts",
"clean": "rm -rf dist src/svg-registry.ts *.tsbuildinfo docs",
"coverage": "tsx scripts/coverage.ts",
"dev": "npm run build && npx serve docs",
"lint": "npx @biomejs/biome check . && npm run lint:ts && npm run lint:svg",
"lint:fix": "npx @biomejs/biome check --write . && npm run lint:ts",
"lint:svg": "tsx scripts/svg-quality-control.ts",
"lint:ts": "tsc --noEmit",
"prepare": "npm run build",
"release": "tsx scripts/release.ts",
"release:minor": "tsx scripts/release.ts minor",
"release:major": "tsx scripts/release.ts major"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^22.15.23",
"glob": "^11.0.2",
"serve": "^14.2.4",
"tsx": "^4.7.0",
"typescript": "^5.3.0"
},
"keywords": [
"icons",
"evcc",
"vehicles",
"chargers",
"meters",
"smartswitches",
"heating",
"svg",
"registry",
"web-components",
"typescript"
],
"author": {
"name": "naltatis",
"email": "michael@evcc.io",
"url": "https://evcc.io"
},
"license": "CC-BY-NC-SA-4.0",
"repository": {
"type": "git",
"url": "https://github.com/evcc-io/evcc-icons.git"
},
"bugs": {
"url": "https://github.com/evcc-io/evcc-icons/issues"
},
"homepage": "https://github.com/evcc-io/evcc-icons#readme",
"dependencies": {
"fuse.js": "^7.1.0"
}
}