osmix 0.0.1

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,7 @@
1
+ # osmix
2
+
3
+ ## 0.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Create placeholder package for top level Osmix tool.
package/package.json ADDED
@@ -0,0 +1,54 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/package",
3
+ "name": "osmix",
4
+ "type": "module",
5
+ "version": "0.0.1",
6
+ "description": "Full OSM toolkit for JavaScript and TypeScript",
7
+ "main": "./src/index.ts",
8
+ "publishConfig": {
9
+ "access": "public",
10
+ "main": "./dist/index.js",
11
+ "types": "./dist/index.d.ts",
12
+ "exports": {
13
+ ".": {
14
+ "import": "./dist/index.js",
15
+ "types": "./dist/index.d.ts"
16
+ }
17
+ },
18
+ "files": [
19
+ "dist",
20
+ "README.md",
21
+ "LICENSE"
22
+ ]
23
+ },
24
+ "license": "MIT",
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "git+https://github.com/conveyal/osmix.git"
28
+ },
29
+ "homepage": "https://github.com/conveyal/osmix#readme",
30
+ "bugs": {
31
+ "url": "https://github.com/conveyal/osmix/issues"
32
+ },
33
+ "sideEffects": false,
34
+ "scripts": {
35
+ "build": "tsc",
36
+ "bench": "vitest bench",
37
+ "test": "vitest",
38
+ "typecheck": "tsc --noEmit"
39
+ },
40
+ "devDependencies": {
41
+ "@types/geojson": "catalog:",
42
+ "typescript": "catalog:",
43
+ "vitest": "catalog:"
44
+ },
45
+ "dependencies": {
46
+ "@osmix/core": "workspace:*",
47
+ "@osmix/json": "workspace:*",
48
+ "@osmix/pbf": "workspace:*",
49
+ "@osmix/raster": "workspace:*",
50
+ "@osmix/shared": "workspace:*",
51
+ "@osmix/vt": "workspace:*",
52
+ "@osmix/change": "workspace:*"
53
+ }
54
+ }
package/src/index.ts ADDED
@@ -0,0 +1,6 @@
1
+ export * from "@osmix/change"
2
+ export * from "@osmix/core"
3
+ export * from "@osmix/json"
4
+ export * from "@osmix/pbf"
5
+ export * from "@osmix/raster"
6
+ export * from "@osmix/vt"