-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.74 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "react-sat-map",
"description": "React components for visualizing real-time satellite locations on a map",
"version": "0.2.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sankichi92/react-sat-map.git"
},
"bugs": "https://github.com/sankichi92/react-sat-map/issues",
"type": "module",
"files": [
"dist",
"lib",
"types/lib",
"LICENSE",
"README.md"
],
"main": "./dist/react-sat-map.umd.cjs",
"module": "./dist/react-sat-map.js",
"types": "./types/lib/main.d.ts",
"exports": {
".": {
"types": "./types/lib/main.d.ts",
"import": "./dist/react-sat-map.js",
"require": "./dist/react-sat-map.umd.cjs"
},
"./style.css": "./dist/react-sat-map.css"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:app": "vite build --config vite.config.app.js",
"fmt": "prettier --write .",
"lint": "prettier --check ."
},
"dependencies": {
"satellite.js": "^5.0.0"
},
"peerDependencies": {
"maplibre-gl": ">=1.13.0 <5.0.0",
"react": ">=19.0.0",
"react-dom": ">=19.0.0",
"react-map-gl": ">=7.1.8"
},
"devDependencies": {
"@tailwindcss/vite": "^4.0.3",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"maplibre-gl": "^4.7.1",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-map-gl": "^7.1.8",
"tailwindcss": "^4.0.3",
"typescript": "~5.7.2",
"vite": "^6.0.5"
},
"packageManager": "pnpm@10.4.0+sha512.6b849d0787d97f8f4e1f03a9b8ff8f038e79e153d6f11ae539ae7c435ff9e796df6a862c991502695c7f9e8fac8aeafc1ac5a8dab47e36148d183832d886dd52",
"volta": {
"node": "22.14.0"
}
}