-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "react-sat-map",
"description": "React components for visualizing real-time satellite locations on a map",
"version": "0.4.3",
"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 ."
},
"engines": {
"node": ">=22"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "^24.11.0",
"onFail": "download"
}
},
"dependencies": {
"satellite.js": "^6.0.0"
},
"peerDependencies": {
"@vis.gl/react-maplibre": ">=8.0.0",
"maplibre-gl": ">=4.0.0",
"react": ">=19.0.0",
"react-dom": ">=19.0.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.0.3",
"@types/geojson": "^7946.0.16",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@vis.gl/react-maplibre": "^8.0.1",
"maplibre-gl": "^5.2.0",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.7.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwindcss": "^4.0.3",
"typescript": "~6.0.2",
"vite": "^8.0.2"
},
"packageManager": "pnpm@10.32.1+sha512.a706938f0e89ac1456b6563eab4edf1d1faf3368d1191fc5c59790e96dc918e4456ab2e67d613de1043d2e8c81f87303e6b40d4ffeca9df15ef1ad567348f2be",
"pnpm": {
"onlyBuiltDependencies": [
"@tailwindcss/oxide",
"esbuild"
]
}
}