generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
65 lines (65 loc) · 2.29 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
{
"name": "obsidian-map-view",
"version": "5.5.0",
"description": "An interactive map view for Obsidian.md",
"main": "main.js",
"type": "module",
"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.4.1",
"@codemirror/view": "^6.35.0",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.1",
"@tsconfig/svelte": "^5.0.4",
"@types/geojson": "^7946.0.14",
"@types/leaflet": "^1.9.15",
"@types/leaflet.markercluster": "^1.5.5",
"@types/node": "^22.10.1",
"@types/google.maps": "^3.58.1",
"codemirror": "^6.0.1",
"lefthook": "^1.8.5",
"obsidian": "^1.7.2",
"postcss-less": "^6.0.0",
"postcss-url": "^10.1.3",
"prettier": "^3.4.2",
"rollup": "^4.28.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-svelte": "^7.2.2",
"svelte": "^5.6.2",
"svelte-preprocess": "^6.0.3",
"tslib": "^2.8.1",
"typescript": "^5.7.2"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.1",
"@fortawesome/free-brands-svg-icons": "^6.7.1",
"@fortawesome/free-regular-svg-icons": "^6.7.1",
"@fortawesome/free-solid-svg-icons": "^6.7.1",
"@popperjs/core": "^2.11.8",
"boon-js": "^2.0.5",
"core-js": "^3.39.0",
"fast-xml-parser": "^4.5.0",
"leaflet": "^1.9.4",
"leaflet-extra-markers": "github:coryasilva/Leaflet.ExtraMarkers",
"leaflet-fullscreen": "^1.0.2",
"leaflet-geosearch": "^4.0.0",
"leaflet.markercluster": "^1.5.3",
"leaflet.offline": "^3.1.0",
"moment": "^2.30.1",
"open": "^10.1.0",
"query-string": "^9.1.1",
"wildcard": "^2.0.1"
}
}