-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
98 lines (98 loc) · 3.05 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
98
{
"name": "mapbox-gl-interpolate-heatmap",
"description": "Mapbox layer for average/interpolation heatmaps",
"version": "0.8.0",
"main": "./dist/mapbox-gl-interpolate-heatmap.js",
"module": "./dist/mapbox-gl-interpolate-heatmap.js",
"umd": "./dist/mapbox-gl-interpolate-heatmap.umd.cjs",
"unpkg": "./dist/mapbox-gl-interpolate-heatmap.cjs",
"jsdelivr": "./dist/mapbox-gl-interpolate-heatmap.cjs",
"cdn": "./dist/mapbox-gl-interpolate-heatmap.min.js",
"exports": {
".": {
"import": "./dist/mapbox-gl-interpolate-heatmap.js",
"require": "./dist/mapbox-gl-interpolate-heatmap.umd.cjs"
}
},
"types": "./dist/mapbox-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": "is-ci || husky",
"lint": "bun run lint:prettier && bun run lint:eslint",
"lintfix": "bun run lint:prettier:fix && bun run lint:eslint:fix",
"lint:js": "bun run lint:eslint && bun run lint:prettier",
"lint:eslint": "eslint `{,!(node_modules|dist)/**/}*.{js,ts,vue}`",
"lint:eslint:fix": "eslint --fix `{,!(node_modules|dist)/**/}*.{js,ts,vue}`",
"lint:prettier": "prettier --check `{,!(node_modules|dist)/**/}*.{js,ts,vue}`",
"lint:prettier:fix": "prettier --write `{,!(node_modules|dist)/**/}*.{js,ts,vue}`",
"release": "shipjs prepare",
"release:auto": "shipjs prepare --yes",
"release:dry": "shipjs prepare --dry-run"
},
"dependencies": {
"earcut": "2.2.4"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/earcut": "^2.1.4",
"@types/mapbox-gl": "^1.13.2",
"@types/node": "^20.12.8",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.3",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-security": "^1.7.1",
"husky": "^9.1.7",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.7",
"mapbox-gl": "1.13.2",
"mapbox-gl-interpolate-heatmap": "^0.8.0",
"prettier": "^3.3.2",
"shipjs": "^0.27.0",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-plugin-dts": "^3.9.1"
},
"peerDependencies": {
"earcut": "2.2.4",
"mapbox-gl": "1.13.2"
},
"keywords": [
"mapbox",
"heatmap",
"layer",
"average",
"interpolation",
"temperature",
"map"
],
"author": {
"name": "Vinayak Kulkarni",
"email": "inbox.vinayak@gmail.com",
"url": "https://vinayakkulkarni.dev"
},
"contributors": [
"Léo Leplat",
"Chris Santamaria"
],
"license": "MIT",
"engines": {
"node": ">=16.0.0",
"npm": ">=8.19.2"
},
"private": false,
"sideEffects": false,
"bugs": {
"url": "https://github.com/vinayakkulkarni/mapbox-gl-interpolate-heatmap/issues"
},
"homepage": "https://github.com/vinayakkulkarni/mapbox-gl-interpolate-heatmap#readme"
}