-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.59 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": "contour-generator",
"version": "2.0.8",
"description": "Locally generates contour vector tiles using maplibre-contour",
"main": "./dist/index.js",
"bin": {
"contour-generator": "./dist/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"patch": "patch-package",
"build": "rimraf dist && tsc",
"prepare": "npm run build",
"postinstall": "npm run patch",
"format": "prettier --write \"**/*.{ts,js,json}\"",
"lint": "eslint \"**/*.{ts,js}\"",
"check": "npm run format && npm run lint"
},
"files": [
"dist/",
"patches/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/TechIdiots-LLC/contour-generator.git"
},
"keywords": [
"maplibre",
"vector",
"tile",
"mvt"
],
"author": "Andrew Calcutt",
"license": "BSD-3-Clause",
"type": "module",
"bugs": {
"url": "https://github.com/TechIdiots-LLC/contour-generator/issues"
},
"homepage": "https://github.com/TechIdiots-LLC/contour-generator#readme",
"dependencies": {
"@mapbox/mbtiles": "^0.12.1",
"@mapbox/tilebelt": "^2.0.2",
"commander": "^12.1.0",
"maplibre-contour": "^0.1.0",
"patch-package": "8.0.0",
"pmtiles": "^4.1.0",
"semver": "^7.7.2",
"sharp": "^0.33.5",
"tsx": "^4.19.2"
},
"devDependencies": {
"@types/node": "^22.10.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"patch-package": "^8.0.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"shellcheck": "^3.0.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.1"
}
}