@minmaps-dev/mm-web-sdk 0.0.0-rc-20260623204551

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 ADDED
@@ -0,0 +1,97 @@
1
+ {
2
+ "name": "@minmaps-dev/mm-web-sdk",
3
+ "version": "0.0.0-rc-20260623204551",
4
+ "description": "MinuteMaps indoor mapping SDK for MapLibre GL - render venues, floors, POIs, and wayfinding routes",
5
+ "license": "MIT",
6
+ "author": "MTS LLC",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/MTS-LLC/mm-maplibre-web-sdk-dev.git"
10
+ },
11
+ "bugs": {
12
+ "url": "https://github.com/MTS-LLC/mm-maplibre-web-sdk-dev/issues"
13
+ },
14
+ "keywords": [
15
+ "indoor-mapping",
16
+ "maplibre",
17
+ "wayfinding",
18
+ "kiosk",
19
+ "sdk",
20
+ "minutemaps"
21
+ ],
22
+ "homepage": "https://github.com/MTS-LLC/mm-maplibre-web-sdk-dev#readme",
23
+ "publishConfig": {
24
+ "access": "public"
25
+ },
26
+ "engines": {
27
+ "node": ">=18"
28
+ },
29
+ "type": "module",
30
+ "main": "./dist/index.cjs",
31
+ "module": "./dist/index.js",
32
+ "types": "./dist/index.d.ts",
33
+ "exports": {
34
+ ".": {
35
+ "types": "./dist/index.d.ts",
36
+ "import": "./dist/index.js",
37
+ "require": "./dist/index.cjs",
38
+ "default": "./dist/index.js"
39
+ },
40
+ "./react": {
41
+ "types": "./dist/react.d.ts",
42
+ "import": "./dist/react.js",
43
+ "require": "./dist/react.cjs",
44
+ "default": "./dist/react.js"
45
+ },
46
+ "./package.json": "./package.json"
47
+ },
48
+ "files": [
49
+ "dist",
50
+ "src/themes/*.json"
51
+ ],
52
+ "sideEffects": false,
53
+ "peerDependencies": {
54
+ "@turf/turf": "^7",
55
+ "maplibre-gl": "^4",
56
+ "pmtiles": "^4",
57
+ "react": "^18 || ^19",
58
+ "react-dom": "^18 || ^19"
59
+ },
60
+ "peerDependenciesMeta": {
61
+ "react": {
62
+ "optional": true
63
+ },
64
+ "react-dom": {
65
+ "optional": true
66
+ }
67
+ },
68
+ "devDependencies": {
69
+ "@rollup/plugin-alias": "^5.1.1",
70
+ "@rollup/plugin-commonjs": "^25",
71
+ "@rollup/plugin-json": "^6",
72
+ "@rollup/plugin-node-resolve": "^15",
73
+ "@rollup/plugin-terser": "^0.4.4",
74
+ "@rollup/plugin-typescript": "^11",
75
+ "@types/geojson": "^7946.0.16",
76
+ "@types/node": "^24.10.0",
77
+ "@types/react": "^19.2.2",
78
+ "@types/react-dom": "^19.2.2",
79
+ "mm-jmap.js": "^4.14.0",
80
+ "rimraf": "^6",
81
+ "rollup": "^4",
82
+ "rollup-plugin-dts": "^6",
83
+ "typescript": "^5",
84
+ "vitest": "^2",
85
+ "@vitest/coverage-v8": "^2",
86
+ "@minmaps-dev/material-icon-set": "0.0.0-rc-20260623204551"
87
+ },
88
+ "scripts": {
89
+ "build": "rimraf dist && rollup -c",
90
+ "dev": "NODE_ENV=development rollup -cw",
91
+ "dev:sdk": "NODE_ENV=development rollup -cw",
92
+ "typecheck": "tsc --noEmit",
93
+ "test": "vitest run",
94
+ "test:watch": "vitest",
95
+ "test:coverage": "vitest run --coverage"
96
+ }
97
+ }