-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
101 lines (101 loc) · 3.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "leafletjs-svelte",
"version": "0.1.1",
"description": "Svelte component for LeafletJS written in TypeScript, supports SSR context.",
"license": "MIT",
"scripts": {
"dev": "vite dev",
"build package": "vite build && npm run package",
"build": "vite build",
"preview": "vite preview",
"package": "svelte-kit sync && svelte-package && npx publint",
"prepublishOnly": "npm run package",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"coverage": "vitest run --coverage",
"e2e-test": "cypress run",
"unit-test": "cypress run --component",
"cypress": "cypress open",
"gh-pages": "npm run build && npx gh-pages -d build",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write ."
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
}
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*",
"!dist/**/*.cy.*"
],
"peerDependencies": {
"svelte": "^4.0.5"
},
"devDependencies": {
"@fontsource-variable/jetbrains-mono": "^5.0.1",
"@fontsource-variable/nunito": "^5.0.0",
"@fontsource-variable/overpass": "^5.0.1",
"@fontsource/dejavu-mono": "^5.0.0",
"@fontsource/fira-mono": "^5.0.1",
"@fontsource/jetbrains-mono": "^5.0.0",
"@fortawesome/free-brands-svg-icons": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@sveltejs/adapter-auto": "^2.1.0",
"@sveltejs/adapter-static": "^2.0.3",
"@sveltejs/kit": "^1.25.2",
"@sveltejs/package": "^2.2.2",
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/svelte": "^4.0.3",
"@testing-library/user-event": "^14.4.3",
"@types/testing-library__jest-dom": "^5.14.7",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"@vitest/coverage-c8": "^0.33.0",
"@vitest/ui": "^0.33.0",
"cypress": "^13.3.1",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-svelte": "^2.30.0",
"gh-pages": "^5.0.0",
"jsdom": "^22.1.0",
"mdsvex": "^0.11.0",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"shiki": "^0.14.3",
"svelte": "^4.2.1",
"svelte-check": "^3.4.5",
"svelte-fa": "^3.0.3",
"tslib": "^2.6.0",
"typescript": "^5.1.6",
"vite": "^4.4.2",
"vite-plugin-static-copy": "^0.16.0",
"vitest": "^0.33.0"
},
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"dependencies": {
"@types/leaflet": "^1.9.6",
"@types/leaflet-draw": "^1.0.8",
"leaflet": "^1.9.4",
"leaflet-draw": "^1.0.4"
},
"homepage": "https://otokama.github.io/leafletjs-svelte/",
"repository": {
"type": "git",
"url": "https://github.com/otokama/leafletjs-svelte"
},
"bugs": {
"url": "https://github.com/otokama/leafletjs-svelte/issues"
},
"keywords": [
"svelte",
"leaflet"
],
"author": "lampo <https://github.com/otokama>"
}