-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.52 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
{
"name": "react-geojson-map",
"version": "0.2.0",
"description": "A library for declarative geospatial visualization using React Fiber and OpenLayers",
"main": "dist/react-geojson-map.umd.js",
"module": "dist/react-geojson-map.es.js",
"type": "module",
"types": "dist/index.d.ts",
"scripts": {
"dev": "npx astro dev --root ./docs",
"build": "tsc -b && vite build",
"lint": "eslint .",
"test": "pnpm run dev & playwright test; kill $!",
"build:docs": "npx astro build --root ./docs"
},
"homepage": "https://behoney.github.io/react-geojson-map/",
"repository": {
"type": "git",
"url": "https://github.com/behoney/react-geojson-map.git"
},
"keywords": [
"react",
"openlayers",
"geospatial",
"visualization",
"mapping"
],
"author": "behoney",
"license": "MIT",
"peerDependencies": {
"ol": "^10.2.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-reconciler": "^0.29.2"
},
"devDependencies": {
"@astrojs/react": "^3.6.2",
"@eslint/js": "^9.9.0",
"@playwright/test": "^1.47.2",
"@types/node": "^22.7.4",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-reconciler": "^0.28.8",
"@vitejs/plugin-react": "^4.3.1",
"astro": "^4.15.10",
"eslint": "^9.9.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.9",
"globals": "^15.9.0",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.1",
"vite": "^5.4.1"
},
"files": [
"dist"
]
}