vue-circular-gauge
Version:
Circular gauge component for Vue.js with customizable colors, animations, and thresholds
105 lines (104 loc) • 2.71 kB
JSON
{
"name": "vue-circular-gauge",
"version": "2.0.1",
"description": "Circular gauge component for Vue.js with customizable colors, animations, and thresholds",
"author": "Gökhan Öztürk",
"license": "MIT",
"type": "module",
"main": "dist/vue-circular-gauge.umd.js",
"module": "dist/vue-circular-gauge.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/vue-circular-gauge.es.js",
"require": "./dist/vue-circular-gauge.umd.js",
"types": "./dist/index.d.ts"
},
"./style.css": "./dist/style.css"
},
"files": [
"dist",
"CHANGELOG.md"
],
"sideEffects": false,
"keywords": [
"vue",
"gauge",
"chart",
"circular",
"progress",
"component",
"svg",
"dashboard",
"visualization",
"ui"
],
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"type-check": "vue-tsc --noEmit",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"semantic-release": "semantic-release"
},
"peerDependencies": {
"vue": "^3.3.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"semantic-release": "^23.0.2",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.10.5",
"@vitejs/plugin-vue": "^4.5.2",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.4.3",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.19.2",
"jsdom": "^26.1.0",
"terser": "^5.39.2",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vite-plugin-dts": "^2.3.0",
"vitest": "^1.0.4",
"vue": "^3.3.11",
"vue-tsc": "^1.8.25"
},
"dependencies": {
"clsx": "^2.0.0",
"tailwind-merge": "^2.1.0"
},
"release": {
"branches": [
"master"
],
"repositoryUrl": "https://github.com/gokh4nozturk/gauge.git",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
},
"repository": {
"type": "git",
"url": "https://github.com/gokh4nozturk/gauge.git"
},
"bugs": {
"url": "https://github.com/gokh4nozturk/gauge/issues"
},
"homepage": "https://github.com/gokh4nozturk/gauge#readme"
}