-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2 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
{
"name": "react-leaflet-jsx",
"version": "1.0.2",
"repository": {
"type": "git",
"url": "git+https://github.com/evertdespiegeleer/react-leaflet-jsx.git"
},
"module": "./dist/esm/main.js",
"exports": {
"import": {
"types": "./dist/types/main.d.ts",
"default": "./dist/esm/main.js"
},
"require": {
"types": "./dist/cjs/main.d.ts",
"default": "./dist/cjs/main.js"
}
},
"main": "./dist/cjs/main.js",
"types": "./dist/types/main.d.ts",
"license": "MIT",
"author": "Evert De Spiegeleer",
"type": "module",
"files": [
"./readme.md",
"./dist"
],
"scripts": {
"build": "tsc && rm -r ./dist || true && npx rollup -c",
"lint": "eslint 'src/**/*.tsx'",
"lint:fix": "npm run lint -- --fix",
"prepare": "npx husky install"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/leaflet": "^1.9.12",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.18.1",
"devmoji": "^2.3.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.0",
"rollup": "^4.21.2",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"tslib": "^2.7.0",
"typescript": "^4.4.4"
},
"peerDependencies": {
"leaflet": "^1.9.4",
"react-dom": "^18.0.0",
"react-leaflet": "^4.0.0",
"react": "^18.0.0"
},
"engines": {
"node": "^20.10.x",
"npm": "^10.2.3"
},
"bugs": {
"url": "https://github.com/evertdespiegeleer/react-leaflet-jsx/issues"
},
"homepage": "https://github.com/evertdespiegeleer/react-leaflet-jsx#readme",
"keywords": []
}