-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
79 lines (79 loc) · 2.13 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
74
75
76
77
78
79
{
"name": "@watergis/svelte-maplibre-style-switcher",
"version": "4.0.1",
"description": "This is a svelte component to add style stich component to maplibre.",
"main": "dist/index.js",
"files": [
"dist",
"package.json",
"README.md",
"CHANGELOG.md"
],
"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 ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/watergis/svelte-maplibre-components.git",
"directory": "packages/style-switcher"
},
"keywords": [
"maplibre",
"maplibre-gl-js",
"style"
],
"author": "Jin IGARASHI",
"license": "MIT",
"bugs": {
"url": "https://github.com/watergis/svelte-maplibre-components/issues"
},
"homepage": "https://github.com/watergis/svelte-maplibre-components/tree/main/packages/style-switcher#readme",
"devDependencies": {
"@creativebulma/bulma-tooltip": "^1.2.0",
"@sveltejs/adapter-auto": "^3.2.4",
"@sveltejs/kit": "^2.5.24",
"@sveltejs/package": "^2.3.4",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@types/debounce": "^1.2.4",
"@types/lodash-es": "^4.17.12",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"@watergis/svelte-maplibre-menu": "workspace:^",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.43.0",
"globals": "^15.9.0",
"pmtiles": "^3.0.7",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.6",
"sass": "^1.77.8",
"svelte": "^4.2.19",
"svelte-check": "^3.8.6",
"svelte-preprocess": "^6.0.2",
"tslib": "^2.7.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.2.0",
"vite": "^5.4.2"
},
"type": "module",
"dependencies": {
"debounce": "^2.1.0",
"maplibre-gl": "^4.6.0"
},
"peerDependencies": {
"svelte": "^4.0.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
}
},
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts"
}