-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.93 KB
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
{
"name": "@undp-data/style-switcher",
"version": "2.0.15",
"description": "This package is to add basemap style switcher plugin to maplibre in GeoHub",
"scripts": {
"dev": "vite dev",
"build": "svelte-kit sync && svelte-package",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write ."
},
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/UNDP-Data/geohub.git"
},
"author": "United Nations Development Programme",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/UNDP-Data/geohub/issues"
},
"homepage": "https://github.com/UNDP-Data/geohub#readme",
"devDependencies": {
"@eslint/js": "^9.26.0",
"@sveltejs/adapter-auto": "^7.0.0",
"@sveltejs/kit": "^2.21.0",
"@sveltejs/package": "^2.3.11",
"@sveltejs/vite-plugin-svelte": "^6.0.0",
"@types/lodash-es": "^4.17.12",
"@typescript-eslint/eslint-plugin": "8.57.1",
"@typescript-eslint/parser": "^8.32.1",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-svelte": "^3.6.0",
"globals": "^17.0.0",
"prettier": "^3.5.3",
"prettier-plugin-svelte": "^3.3.3",
"sass": "^1.88.0",
"svelte": "^5.28.6",
"svelte-check": "^4.1.7",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1",
"vite": "^7.0.0"
},
"type": "module",
"dependencies": {
"lodash-es": "^4.17.21",
"maplibre-gl": "^5.5.0",
"tippy.js": "^6.3.7"
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
},
"./dist/maplibre-style-switcher.css": {
"import": "./dist/maplibre-style-switcher.css",
"require": "./dist/maplibre-style-switcher.css"
}
},
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts"
}