@tracktor/map 1.0.6 → 1.1.2

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 (3) hide show
  1. package/dist/main.js +15858 -13732
  2. package/dist/main.umd.cjs +115 -111
  3. package/package.json +20 -10
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@tracktor/map",
3
- "description": "A react library to easily display map with multiple tools",
3
+ "description": "A React library to easily display map with multiple tools",
4
4
  "private": false,
5
5
  "license": "UNLICENSED",
6
- "version": "1.0.6",
6
+ "version": "1.1.2",
7
7
  "type": "module",
8
8
  "main": "dist/main.umd.cjs",
9
9
  "module": "dist/main.js",
@@ -16,16 +16,21 @@
16
16
  }
17
17
  },
18
18
  "scripts": {
19
- "example": "vite",
20
- "build": "tsc && vite build",
21
- "lint": "biome check --diagnostic-level=error . && tsc --noEmit --incremental",
22
- "lint:fix": "biome check . --write",
23
- "prepublishOnly": "yarn build",
24
- "preview": "vite preview"
19
+ "example": "bunx vite",
20
+ "build": "bunx tsc && bunx vite build",
21
+ "lint": "bunx biome check --diagnostic-level=error . && bunx tsc --noEmit --incremental",
22
+ "lint:fix": "bunx biome check . --write",
23
+ "prepublishOnly": "bun run build",
24
+ "preview": "bunx vite preview",
25
+ "release": "bun run build && bun publish --access public",
26
+ "version": "bunx standard-version"
25
27
  },
26
28
  "files": [
27
29
  "dist"
28
30
  ],
31
+ "publishConfig": {
32
+ "access": "public"
33
+ },
29
34
  "dependencies": {
30
35
  "@mui/icons-material": "^5.17.1",
31
36
  "@mui/x-license": "^8.6.0",
@@ -34,7 +39,7 @@
34
39
  "mapbox-gl": "^3.12.0"
35
40
  },
36
41
  "devDependencies": {
37
- "@tracktor/biome-config-react": "^1.1.1",
42
+ "@tracktor/biome-config-react": "^1.3.0",
38
43
  "@types/mapbox-gl": "^3.4.1",
39
44
  "@types/node": "^22.14.0",
40
45
  "@types/react": "^19.0.0",
@@ -42,6 +47,7 @@
42
47
  "@vitejs/plugin-react": "^4.6.0",
43
48
  "react": "^19.0.0",
44
49
  "react-dom": "^19.0.0",
50
+ "standard-version": "^9.5.0",
45
51
  "typescript": "~5.8.3",
46
52
  "vite": "^7.0.0",
47
53
  "vite-plugin-css-injected-by-js": "^3.5.2",
@@ -54,5 +60,9 @@
54
60
  "mapbox-gl": ">=3.0.0",
55
61
  "react": "^17.0.0 || ^18.0.0 || ^19.0.0",
56
62
  "react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
57
- }
63
+ },
64
+ "engines": {
65
+ "bun": ">=1.1.0"
66
+ },
67
+ "packageManager": "bun@1.1.34"
58
68
  }