-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.18 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
{
"name": "react-leaflet-select-area",
"description": "A simple React component for selecting an area on a Leaflet map.",
"version": "1.0.0",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"type": "module",
"scripts": {
"build": "rollup -c",
"test": "vitest --run",
"prepublishOnly": "npm run build"
},
"keywords": [
"react",
"leaflet",
"select-area",
"react-leaflet",
"react-leaflet-v4"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nirajmohanrana/react-leaflet-select-area.git"
},
"author": "Niraj Rana",
"license": "MIT",
"dependencies": {
"@vercel/analytics": "^1.3.2",
"leaflet": "^1.9.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-leaflet": "^4.2.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.0",
"@types/jest": "^29.5.13",
"@types/leaflet": "^1.9.12",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"rollup": "^4.24.0",
"tslib": "^2.7.0",
"typescript": "^5.5.3"
}
}