@osmix/vt 0.0.11 → 0.0.12

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/CHANGELOG.md ADDED
@@ -0,0 +1,103 @@
1
+ # @osmix/vt
2
+
3
+ ## 0.0.12
4
+
5
+ ### Patch Changes
6
+
7
+ - 2a634cb: Fix publishing
8
+ - Updated dependencies [2a634cb]
9
+ - @osmix/shared@0.0.12
10
+
11
+ ## 0.0.11
12
+
13
+ ### Patch Changes
14
+
15
+ - 3c8ee95: Fix and simplify package exports
16
+ - Updated dependencies [3c8ee95]
17
+ - @osmix/shared@0.0.11
18
+
19
+ ## 0.0.10
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies [12728ed]
24
+ - @osmix/shared@0.0.10
25
+
26
+ ## 0.0.9
27
+
28
+ ### Patch Changes
29
+
30
+ - f32e4ee: General cleanup
31
+ - Updated dependencies [f32e4ee]
32
+ - @osmix/shared@0.0.9
33
+
34
+ ## 0.0.8
35
+
36
+ ### Patch Changes
37
+
38
+ - f468db5: Fix publishing (2)
39
+ - Updated dependencies [f468db5]
40
+ - @osmix/shared@0.0.8
41
+
42
+ ## 0.0.7
43
+
44
+ ### Patch Changes
45
+
46
+ - 68d6bd8: Fix publishing for packages.
47
+ - Updated dependencies [68d6bd8]
48
+ - @osmix/shared@0.0.7
49
+
50
+ ## 0.0.6
51
+
52
+ ### Patch Changes
53
+
54
+ - 2c03b6c: Add shortbread vector tile generation option
55
+ - 0cd8a2e: Explore patterns for extending Osmix worker
56
+ - Updated dependencies [0cd8a2e]
57
+ - @osmix/shared@0.0.6
58
+
59
+ ## 0.0.5
60
+
61
+ ### Patch Changes
62
+
63
+ - bb629cf: Simplify raster drawing when geometry is smaller than a pixel
64
+ - edbb26b: Handle more Relation types
65
+ - Updated dependencies [bb629cf]
66
+ - Updated dependencies [edbb26b]
67
+ - Updated dependencies [69a36bd]
68
+ - @osmix/shared@0.0.5
69
+
70
+ ## 0.0.4
71
+
72
+ ### Patch Changes
73
+
74
+ - d001d9a: Refactor to align around new main external API
75
+ - Updated dependencies [572cbd8]
76
+ - Updated dependencies [d001d9a]
77
+ - @osmix/shared@0.0.4
78
+
79
+ ## 0.0.3
80
+
81
+ ### Patch Changes
82
+
83
+ - b4a3ff2: Improve Relation handling and display
84
+ - Updated dependencies [b4a3ff2]
85
+ - @osmix/shared@0.0.3
86
+ - @osmix/json@0.0.3
87
+
88
+ ## 0.0.2
89
+
90
+ ### Patch Changes
91
+
92
+ - Updated dependencies [33d9c12]
93
+ - @osmix/shared@0.0.2
94
+ - @osmix/json@0.0.2
95
+
96
+ ## 0.0.1
97
+
98
+ ### Patch Changes
99
+
100
+ - Initial release
101
+ - Updated dependencies
102
+ - @osmix/json@0.0.1
103
+ - @osmix/shared@0.0.1
package/package.json CHANGED
@@ -1,54 +1,30 @@
1
1
  {
2
- "$schema": "https://json.schemastore.org/package",
2
+ "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@osmix/vt",
4
4
  "type": "module",
5
- "version": "0.0.11",
5
+ "version": "0.0.12",
6
6
  "description": "Encode Osmix binary overlay tiles directly into Mapbox Vector Tiles",
7
- "publishConfig": {
8
- "access": "public"
9
- },
10
7
  "license": "MIT",
11
8
  "repository": {
12
9
  "type": "git",
13
10
  "url": "git+https://github.com/conveyal/osmix.git"
14
11
  },
15
- "homepage": "https://github.com/conveyal/osmix#readme",
16
- "bugs": {
17
- "url": "https://github.com/conveyal/osmix/issues"
18
- },
19
- "sideEffects": false,
12
+ "main": "./dist/index.js",
20
13
  "scripts": {
21
14
  "build": "tsc -p tsconfig.build.json",
22
- "prepare": "bun run build",
23
- "release": "bun publish",
24
15
  "test": "bun test",
25
16
  "typecheck": "tsgo --noEmit"
26
17
  },
27
18
  "dependencies": {
28
- "@types/bun": "catalog:",
29
- "@osmix/shared": "workspace:*",
30
- "pbf": "catalog:"
19
+ "@types/bun": "^1.3.9",
20
+ "@osmix/shared": "0.0.12",
21
+ "pbf": "^4.0.1"
31
22
  },
32
23
  "devDependencies": {
33
24
  "@mapbox/tilebelt": "^2.0.3",
34
25
  "@mapbox/vector-tile": "^2.0.4",
35
- "@osmix/core": "workspace:*",
36
- "typescript": "catalog:"
37
- },
38
- "types": "./dist/index.d.ts",
39
- "exports": {
40
- ".": {
41
- "types": "./src/index.ts",
42
- "bun": "./src/index.ts",
43
- "development|production": "./src/index.ts",
44
- "default": "./dist/index.js"
45
- },
46
- "./package.json": "./package.json"
26
+ "@osmix/core": "0.1.7",
27
+ "typescript": "^5.9.0"
47
28
  },
48
- "files": [
49
- "dist",
50
- "src",
51
- "README.md",
52
- "LICENSE"
53
- ]
54
- }
29
+ "types": "./dist/index.d.ts"
30
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/tsconfig",
3
+ "extends": "./tsconfig.json",
4
+ "include": ["src"],
5
+ "exclude": ["**/*.test.ts"]
6
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,9 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/tsconfig",
3
+ "extends": "@osmix/shared/tsconfig/base.json",
4
+ "exclude": ["node_modules", "dist"],
5
+ "include": ["src"],
6
+ "compilerOptions": {
7
+ "outDir": "./dist"
8
+ }
9
+ }