-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
76 lines (76 loc) · 2.1 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
{
"name": "@watergis/svelte-maplibre-search",
"version": "3.0.1",
"description": "This is a svelte component to add search control plugin 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/search"
},
"keywords": [
"maplibre",
"maplibre-gl-js",
"search",
"geojson",
"autocomplete"
],
"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/search#readme",
"devDependencies": {
"@sveltejs/adapter-auto": "^3.1.1",
"@sveltejs/kit": "^2.5.4",
"@sveltejs/package": "^2.3.0",
"@sveltejs/vite-plugin-svelte": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.35.1",
"globals": "^15.9.0",
"pmtiles": "^3.0.5",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.2",
"svelte": "^4.2.12",
"svelte-check": "^3.6.7",
"svelte-preprocess": "^6.0.0",
"tslib": "^2.6.2",
"typescript": "^5.4.2",
"typescript-eslint": "^8.2.0",
"vite": "^5.1.6"
},
"type": "module",
"dependencies": {
"maplibre-gl": "^4.1.0",
"simple-svelte-autocomplete": "^2.5.2"
},
"peerDependencies": {
"svelte": "^4.0.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
}
},
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts"
}