-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.75 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
65
{
"name": "react-sat-map",
"description": "React components for visualizing real-time satellite locations on a map",
"version": "0.1.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",
"react": ">=19.0.0",
"react-dom": ">=19.0.0",
"react-map-gl": ">=7.1.8"
},
"devDependencies": {
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"autoprefixer": "^10.4.20",
"maplibre-gl": "^4.7.1",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-map-gl": "^7.1.8",
"tailwindcss": "^3.4.17",
"typescript": "~5.7.2",
"vite": "^6.0.5"
},
"packageManager": "[email protected]+sha512.1acb565e6193efbebda772702950469150cf12bcc764262e7587e71d19dc98a423dff9536e57ea44c49bdf790ff694e83c27be5faa23d67e0c033b583be4bfcf",
"volta": {
"node": "22.12.0"
}
}