-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.11 KB
/
package.json
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "maplibre-gl-interpolate-heatmap",
"description": "Mapbox layer for average/interpolation heatmaps",
"version": "0.0.1",
"main": "./dist/maplibre-gl-interpolate-heatmap.js",
"module": "./dist/maplibre-gl-interpolate-heatmap.js",
"umd": "./dist/maplibre-gl-interpolate-heatmap.umd.cjs",
"unpkg": "./dist/maplibre-gl-interpolate-heatmap.cjs",
"jsdelivr": "./dist/maplibre-gl-interpolate-heatmap.cjs",
"cdn": "./dist/maplibre-gl-interpolate-heatmap.min.js",
"exports": {
".": {
"import": "./dist/maplibre-gl-interpolate-heatmap.js",
"require": "./dist/maplibre-gl-interpolate-heatmap.umd.cjs"
}
},
"types": "./dist/maplibre-gl-interpolate-heatmap.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && vite build && prettier --write dist/*{cjs,js,ts}",
"test": "echo 'test!'",
"prepare": "husky install",
"lint": "npm run lint:prettier && npm run lint:eslint",
"lintfix": "npm run lint:prettier:fix && npm run lint:eslint:fix",
"lint:js": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint \"{,!(node_modules|dist)/**/}*.{js,ts}\" --ignore-path .gitignore",
"lint:eslint:fix": "eslint --fix \"{,!(node_modules|dist)/**/}*.{js,ts}\" --ignore-path .gitignore",
"lint:prettier": "prettier --check \"{,!(node_modules|dist)/**/}*.{js,ts}\" --ignore-path .gitignore",
"lint:prettier:fix": "prettier --write \"{,!(node_modules|dist)/**/}*.{js,ts}\" --ignore-path .gitignore",
"lint-staged": "lint-staged",
"release": "shipjs prepare",
"release:auto": "shipjs prepare --yes",
"release:dry": "shipjs prepare --dry-run"
},
"dependencies": {
"earcut": "2.2.4"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^17.8.0",
"@types/earcut": "^2.1.4",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^46.9.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-security": "^1.7.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.2",
"maplibre-gl": "^2.4.0",
"maplibre-gl-interpolate-heatmap": "^0.0.0",
"prettier": "^2.8.8",
"shipjs": "^0.26.3",
"typescript": "^5.5.2",
"vite": "^4.5.0",
"vite-plugin-dts": "^3.6.4"
},
"peerDependencies": {
"earcut": "2.2.4",
"maplibre-gl": "2.4.0"
},
"keywords": [
"mapbox",
"heatmap",
"layer",
"average",
"interpolation",
"temperature",
"map"
],
"author": {
"name": "Vinayak Kulkarni",
"email": "inbox.vinayak@gmail.com",
"url": "https://geoql.dev"
},
"contributors": [
"Léo Leplat",
"Chris Santamaria"
],
"license": "MIT",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"private": false,
"sideEffects": false,
"bugs": {
"url": "https://github.com/geoql/maplibre-gl-interpolate-heatmap/issues"
},
"homepage": "https://github.com/geoql/maplibre-gl-interpolate-heatmap#readme"
}