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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. 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 MinIO + fake-gcs-server for local testing)
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
- "type": "module",
3
- "name": "chiitiler",
4
- "version": "1.20.2",
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": "vitest bench"
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/better-sqlite3": "^7.6.13",
29
- "@types/node": "^25.6.0",
30
- "@vitest/coverage-v8": "^4.1.4",
31
- "esbuild": "^0.28.0",
32
- "image-size": "^2.0.2",
33
- "tsx": "^4.21.0",
34
- "typescript": "^6.0.3",
35
- "vitest": "^4.1.4"
36
- },
37
- "dependencies": {
38
- "@aws-sdk/client-s3": "^3.1032.0",
39
- "@google-cloud/storage": "^7.19.0",
40
- "@hono/node-server": "^2.0.0",
41
- "@mapbox/sphericalmercator": "^2.0.2",
42
- "@mapbox/tilebelt": "^2.0.3",
43
- "@maplibre/maplibre-gl-native": "^6.4.1",
44
- "@maplibre/maplibre-gl-style-spec": "^24.8.1",
45
- "better-sqlite3": "12.9.0",
46
- "commander": "^14.0.3",
47
- "file-system-cache": "^2.4.7",
48
- "higuruma": "^0.1.6",
49
- "hono": "^4.12.14",
50
- "lightning-pool": "^4.12.0",
51
- "lru-cache": "^11.3.5",
52
- "maplibre-gl": "^5.23.0",
53
- "pmtiles": "^4.4.1",
54
- "sharp": "^0.34.5"
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
  }