-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.49 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
{
"type": "module",
"name": "chiitiler",
"version": "1.14.0",
"description": "Tiny map rendering server for MapLibre Style Spec",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsx watch src/main.ts tile-server -D",
"start": "tsc && node ./dist/main.js tile-server",
"test:unit": "vitest src",
"test:coverage": "vitest src --coverage --coverage.provider=v8",
"test:integration": "vitest tests/integration.test.ts",
"test:benchmark": "vitest bench",
"prepare": "npm run build"
},
"keywords": [],
"author": "Kanahiro Iguchi",
"license": "MIT",
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/better-sqlite3": "^7.6.10",
"@types/node": "^20.6.0",
"@vitest/coverage-v8": "^1.6.0",
"image-size": "^1.1.1",
"maplibre-gl": "^3.3.1",
"ts-node": "^10.9.1",
"tsx": "^4.7.1",
"typescript": "^5.2.2",
"vitest": "^1.6.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.418.0",
"@hono/node-server": "^1.12.0",
"@mapbox/sphericalmercator": "^1.2.0",
"@mapbox/tilebelt": "^1.0.2",
"@maplibre/maplibre-gl-native": "^5.4.0",
"@maplibre/maplibre-gl-style-spec": "^20.2.0",
"better-sqlite3": "^9.6.0",
"commander": "^11.0.0",
"file-system-cache": "^2.4.4",
"higuruma": "^0.1.6",
"hono": "^4.5.4",
"lightning-pool": "^4.2.2",
"lru-cache": "^11.0.0",
"pmtiles": "^3.0.5",
"sharp": "^0.32.5"
}
}