-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.87 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
66
67
68
69
70
71
72
73
74
75
{
"name": "@moonchain/react-mapper",
"type": "module",
"version": "0.4.0",
"packageManager": "pnpm@9.5.0",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./style.css": "./dist/index.css"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./index.d.ts",
"files": [
"dist",
"index.d.ts",
"src"
],
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"release": "bumpp",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit --skipLibCheck",
"preview": "vite preview",
"prepublish": "npm run build"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"dependencies": {
"@apollo/client": "^3.7.17",
"@chakra-ui/react": "2.7.1",
"@emotion/styled": "^11.10.4",
"@thirdweb-dev/react": "^3.14.9",
"@thirdweb-dev/sdk": "^3.10.29",
"ethers": "5",
"geojson": "^0.5.0",
"geojson2h3": "^1.2.0",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"h3-js": "^4.1.0",
"leaflet": "^1.9.3",
"localforage": "^1.10.0",
"mitt": "^3.0.1",
"react-icons": "^4.8.0",
"react-leaflet": "^4.2.1",
"react-use": "^17.6.0"
},
"devDependencies": {
"@antfu/eslint-config": "^4.3.0",
"@eslint-react/eslint-plugin": "^1.26.2",
"@eslint/js": "^9.20.0",
"@types/leaflet": "^1.9.3",
"@types/node": "^22.13.4",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"bumpp": "^9.4.1",
"eslint": "^9.20.1",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^15.15.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"sass-embedded": "^1.85.0",
"typescript": "~5.7.2",
"typescript-eslint": "^8.24.1",
"vite": "^6.1.0"
}
}