chiitiler 1.20.2 → 1.20.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +56 -54
package/README.md
CHANGED
|
@@ -142,7 +142,7 @@ Chiitiler caches *source assets* (vector tiles, glyphs, sprites) — not final r
|
|
|
142
142
|
## Deployment
|
|
143
143
|
|
|
144
144
|
- **Docker** — `ghcr.io/kanahiro/chiitiler:latest` (entrypoint: `tile-server`)
|
|
145
|
-
- **Docker Compose** — see [`docker-compose.yml`](./docker-compose.yml) (includes
|
|
145
|
+
- **Docker Compose** — see [`docker-compose.yml`](./docker-compose.yml) (includes RustFS + fake-gcs-server for local testing)
|
|
146
146
|
- **AWS Lambda** — ready-to-deploy CDK app in [`cdk/`](./cdk)
|
|
147
147
|
|
|
148
148
|
## Develop
|
package/package.json
CHANGED
|
@@ -1,56 +1,58 @@
|
|
|
1
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
|
-
|
|
2
|
+
"type": "module",
|
|
3
|
+
"name": "chiitiler",
|
|
4
|
+
"version": "1.20.3",
|
|
5
|
+
"description": "Tiny map rendering server for MapLibre Style Spec",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"scripts": {
|
|
12
|
+
"build": "npx esbuild --bundle src/main.ts --minify --outfile=build/main.cjs --platform=node --external:@maplibre/maplibre-gl-native --external:sharp",
|
|
13
|
+
"check": "tsc --noEmit",
|
|
14
|
+
"dev": "tsx watch src/main.ts tile-server -D",
|
|
15
|
+
"test:unit": "vitest src",
|
|
16
|
+
"test:coverage": "vitest src --coverage --coverage.provider=v8",
|
|
17
|
+
"test:integration": "vitest tests/integration.test.ts",
|
|
18
|
+
"test:benchmark": "tsx tests/benchmark.ts"
|
|
19
|
+
},
|
|
20
|
+
"keywords": [],
|
|
21
|
+
"author": "Kanahiro Iguchi",
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"repository": {
|
|
24
|
+
"url": "https://github.com/Kanahiro/chiitiler"
|
|
25
|
+
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"@tsconfig/node24": "^24.0.4",
|
|
28
|
+
"@types/autocannon": "^7.12.7",
|
|
29
|
+
"@types/better-sqlite3": "^7.6.13",
|
|
30
|
+
"@types/node": "^25.6.0",
|
|
31
|
+
"@vitest/coverage-v8": "^4.1.4",
|
|
32
|
+
"autocannon": "^8.0.0",
|
|
33
|
+
"esbuild": "^0.28.0",
|
|
34
|
+
"image-size": "^2.0.2",
|
|
35
|
+
"tsx": "^4.21.0",
|
|
36
|
+
"typescript": "^6.0.3",
|
|
37
|
+
"vitest": "^4.1.4"
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"@aws-sdk/client-s3": "^3.1032.0",
|
|
41
|
+
"@google-cloud/storage": "^7.19.0",
|
|
42
|
+
"@hono/node-server": "^2.0.0",
|
|
43
|
+
"@mapbox/sphericalmercator": "^2.0.2",
|
|
44
|
+
"@mapbox/tilebelt": "^2.0.3",
|
|
45
|
+
"@maplibre/maplibre-gl-native": "^6.4.1",
|
|
46
|
+
"@maplibre/maplibre-gl-style-spec": "^24.8.1",
|
|
47
|
+
"better-sqlite3": "12.9.0",
|
|
48
|
+
"commander": "^14.0.3",
|
|
49
|
+
"file-system-cache": "^2.4.7",
|
|
50
|
+
"higuruma": "^0.1.6",
|
|
51
|
+
"hono": "^4.12.14",
|
|
52
|
+
"lightning-pool": "^4.12.0",
|
|
53
|
+
"lru-cache": "^11.3.5",
|
|
54
|
+
"maplibre-gl": "^5.23.0",
|
|
55
|
+
"pmtiles": "^4.4.1",
|
|
56
|
+
"sharp": "^0.34.5"
|
|
57
|
+
}
|
|
56
58
|
}
|