-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.54 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@onvo-ai/chartjs-chart-map",
"version": "0.0.148",
"type": "module",
"author": "Ronnel Davis <ronnel@onvo.ai>",
"license": "ISC",
"description": "Map chart for chart.js",
"homepage": "https://github.com/onvo-ai/chartjs-chart-map",
"repository": "github:onvo-ai/chartjs-chart-map",
"keywords": [
"chart.js",
"typescript",
"map",
"google"
],
"exports": {
".": {
"import": "./dist/es/index.js",
"require": "./dist/cjs/index.js"
},
"./dist/style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
},
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"types": "dist/index.es.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"devDependencies": {
"@types/google.maps": "^3.55.3",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"dts-bundle-generator": "^9.5.1",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"stylelint": "^16.10.0",
"stylelint-config-recommended": "^14.0.1",
"stylelint-config-sass-guidelines": "^12.1.0",
"tslib": "^2.8.0",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-plugin-dts": "^4.3.0"
},
"peerDependencies": {
"chart.js": "^4.4.9"
},
"dependencies": {
"@googlemaps/markerclusterer": "^2.5.3",
"simplify-js": "^1.2.4"
}
}