@geoimpact/sep-map-sdk 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/package.json ADDED
@@ -0,0 +1,65 @@
1
+ {
2
+ "name": "@geoimpact/sep-map-sdk",
3
+ "version": "0.0.1",
4
+ "description": "Geoimpact SEP Map SDK",
5
+ "author": "Yusuf Khasbulatov",
6
+ "license": "ISC",
7
+ "type": "module",
8
+ "main": "./dist/sep-map.umd.js",
9
+ "module": "./dist/sep-map.esm.js",
10
+ "types": "./dist/index.d.ts",
11
+ "files": [
12
+ "dist"
13
+ ],
14
+ "exports": {
15
+ ".": {
16
+ "types": "./dist/index.d.ts",
17
+ "import": "./dist/sep-map.esm.js",
18
+ "require": "./dist/sep-map.umd.js"
19
+ },
20
+ "./dist/style.css": "./dist/style.css"
21
+ },
22
+ "publishConfig": {
23
+ "access": "public"
24
+ },
25
+ "scripts": {
26
+ "dev": "vite",
27
+ "dev:demo": "vite --open /demo/vanilla.html",
28
+ "demo:prod": "vite --open /demo/production.html",
29
+ "build": "tsc -b && vite build && rollup -c scripts/rollup.config.types.js",
30
+ "build:watch": "vite build --watch",
31
+ "lint": "eslint .",
32
+ "preview": "vite preview",
33
+ "upload": "node scripts/upload-to-s3.js",
34
+ "upload:latest": "node scripts/upload-to-s3.js --latest",
35
+ "deploy": "npm run build && npm run upload:latest"
36
+ },
37
+ "devDependencies": {
38
+ "@aws-sdk/client-s3": "^3.975.0",
39
+ "@aws-sdk/lib-storage": "^3.975.0",
40
+ "@eslint/js": "^9.39.1",
41
+ "@types/leaflet": "^1.9.21",
42
+ "@types/node": "^24.10.1",
43
+ "@types/react": "^19.2.5",
44
+ "@types/react-dom": "^19.2.3",
45
+ "@vitejs/plugin-react": "^5.1.1",
46
+ "dotenv": "^17.2.3",
47
+ "eslint": "^9.39.1",
48
+ "eslint-plugin-react-hooks": "^7.0.1",
49
+ "eslint-plugin-react-refresh": "^0.4.24",
50
+ "glob": "^13.0.0",
51
+ "globals": "^16.5.0",
52
+ "leaflet": "^1.9.4",
53
+ "maplibre-gl": "^5.16.0",
54
+ "react": "^19.2.0",
55
+ "react-dom": "^19.2.0",
56
+ "react-leaflet": "^5.0.0",
57
+ "rollup-plugin-dts": "^6.3.0",
58
+ "terser": "^5.46.0",
59
+ "typescript": "~5.9.3",
60
+ "typescript-eslint": "^8.46.4",
61
+ "vite": "^7.2.4",
62
+ "vite-plugin-dts": "^4.5.4",
63
+ "zustand": "^5.0.10"
64
+ }
65
+ }