chartjs-chart-geo
Version:
Chart.js module for charting maps
124 lines • 3.66 kB
JSON
{
"name": "chartjs-chart-geo",
"description": "Chart.js module for charting maps",
"version": "4.3.6",
"author": {
"name": "Samuel Gratzl",
"email": "sam@sgratzl.com",
"url": "https://www.sgratzl.com"
},
"license": "MIT",
"homepage": "https://github.com/sgratzl/chartjs-chart-geo",
"bugs": {
"url": "https://github.com/sgratzl/chartjs-chart-geo/issues"
},
"keywords": [
"chart.js",
"geo",
"map",
"choropleth",
"bubble-map"
],
"repository": {
"type": "git",
"url": "https://github.com/sgratzl/chartjs-chart-geo.git"
},
"global": "ChartGeo",
"type": "module",
"main": "build/index.js",
"module": "build/index.js",
"require": "build/index.cjs",
"umd": "build/index.umd.js",
"unpkg": "build/index.umd.min.js",
"jsdelivr": "build/index.umd.min.js",
"types": "build/index.d.ts",
"exports": {
".": {
"import": "./build/index.js",
"require": "./build/index.cjs",
"scripts": "./build/index.umd.min.js",
"types": "./build/index.d.ts"
}
},
"sideEffects": false,
"files": [
"build",
"src/**/*.ts"
],
"peerDependencies": {
"chart.js": "^4.1.0"
},
"dependencies": {
"@types/d3-geo": "^3.1.0",
"@types/d3-scale-chromatic": "^3.1.0",
"@types/topojson-client": "^3.1.5",
"d3-array": "^3.2.4",
"d3-color": "^3.1.0",
"d3-geo": "^3.1.1",
"d3-interpolate": "^3.0.1",
"d3-scale-chromatic": "^3.1.0",
"topojson-client": "^3.1.0"
},
"devDependencies": {
"@chiogen/rollup-plugin-terser": "^7.1.3",
"@eslint/js": "^9.37.0",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.2",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-typescript": "^12.1.4",
"@types/jest-image-snapshot": "^6.4.0",
"@types/node": "^24.6.2",
"@types/seedrandom": "^3",
"@yarnpkg/sdks": "^3.2.3",
"canvas": "^3.2.0",
"canvas-5-polyfill": "^0.1.5",
"chart.js": "^4.5.0",
"chartjs-plugin-datalabels": "^2.2.0",
"eslint": "^9.37.0",
"eslint-plugin-prettier": "^5.5.4",
"jest-image-snapshot": "^6.5.1",
"jsdom": "^27.0.0",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"rollup": "^4.52.4",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-dts": "^6.2.3",
"seedrandom": "^3.0.5",
"ts-jest": "^29.4.4",
"tslib": "^2.8.1",
"typedoc": "^0.28.13",
"typedoc-plugin-markdown": "^4.9.0",
"typedoc-vitepress-theme": "^1.1.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.45.0",
"us-atlas": "^3.0.1",
"vite": "^7.1.9",
"vitepress": "^1.6.4",
"vitest": "^3.2.4",
"vue": "^3.5.22",
"vue-chartjs": "^5.3.2",
"world-atlas": "^2.0.2"
},
"scripts": {
"clean": "rimraf --glob build node_modules \"*.tgz\" \"*.tsbuildinfo\"",
"compile": "tsc -b tsconfig.c.json",
"start": "yarn run watch",
"watch": "rollup -c -w",
"build": "rollup -c",
"test": "vitest --passWithNoTests",
"test:watch": "yarn run test --watch",
"test:coverage": "yarn run test --coverage",
"lint": "yarn run eslint && yarn run prettier",
"fix": "yarn run eslint:fix && yarn run prettier:write",
"prettier:write": "prettier \"*\" \"*/**\" --write",
"prettier": "prettier \"*\" \"*/**\" --check",
"eslint": "eslint src --cache",
"eslint:fix": "yarn run eslint --fix",
"prepare": "yarn run build",
"docs:api": "typedoc --options typedoc.json",
"docs:dev": "vitepress dev docs",
"docs:build": "yarn run docs:api && vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"packageManager": "yarn@4.10.3"
}