@osmix/vt 0.0.10 → 0.0.11

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