forked from esm7/obsidian-map-view
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 2.05 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
{
"name": "obsidian-map-view",
"version": "5.0.2",
"description": "An interactive map view for Obsidian.md",
"main": "main.js",
"scripts": {
"dev": "rollup --config rollup.config.js -w --environment BUILD:development",
"dev-dist": "rollup --config rollup.config.js -w",
"build": "rollup --config rollup.config.js --environment BUILD:production",
"prettier": "npx prettier --write .",
"stylecheck": "npx prettier --check ."
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@codemirror/state": "^6.2.0",
"@codemirror/view": "^6.11.2",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-image": "^3.0.1",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^8.2.1",
"@types/geojson": "^7946.0.7",
"@types/leaflet": "^1.9.3",
"@types/leaflet.markercluster": "^1.4.5",
"@types/node": "^14.14.37",
"codemirror": "^6.0.1",
"lefthook": "^1.2.7",
"obsidian": "^1.4.11",
"postcss-less": "^4.0.1",
"postcss-url": "^10.1.3",
"prettier": "^2.6.2",
"rollup": "^2.32.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-postcss": "^4.0.0",
"tslib": "^2.2.0",
"typescript": "^4.7.2"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-brands-svg-icons": "^6.5.1",
"@fortawesome/free-regular-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@popperjs/core": "^2.11.7",
"boon-js": "^2.0.5",
"core-js": "^3.32.0",
"fast-xml-parser": "^4.0.9",
"leaflet": "~1.7.1",
"leaflet-extra-markers": "github:coryasilva/Leaflet.ExtraMarkers",
"leaflet-fullscreen": "^1.0.2",
"leaflet-geosearch": "^3.3.2",
"leaflet.markercluster": "^1.5.3",
"moment": "^2.29.1",
"open": "^8.2.1",
"query-string": "^7.1.1",
"wildcard": "^2.0.0"
}
}