-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.5 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
{
"name": "@watergis/maplibre-gl-sky",
"description": "This repository is to add sky color to maplibre-gl-js smartly",
"version": "0.0.9",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/maplibre-gl-sky.es.js",
"require": "./dist/maplibre-gl-sky.umd.js"
}
},
"files": [
"dist",
"package.json"
],
"scripts": {
"dev": "vite dev",
"build": "npm run build:doc && npm run package",
"build:doc": "vite build --config vite.config.ts",
"preview": "vite preview",
"package": "tsc --project tsconfig.lib.json && vite build --config vite.lib.config.ts",
"prepublishOnly": "npm run 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 .",
"release": "changeset publish"
},
"keywords": [
"maplibre",
"maplibre-gl-js",
"sky"
],
"repository": {
"type": "git",
"url": "git+https://github.com/watergis/maplibre-gl-sky.git"
},
"author": "Jin IGARASHI",
"license": "MIT",
"bugs": {
"url": "https://github.com/watergis/maplibre-gl-sky/issues"
},
"homepage": "https://github.com/watergis/maplibre-gl-sky/tree/main/packages/maplibre-gl-sky#readme",
"devDependencies": {
"@changesets/cli": "^2.27.10",
"@floating-ui/dom": "1.6.13",
"@skeletonlabs/skeleton": "2.10.4",
"@skeletonlabs/tw-plugin": "0.4.0",
"@sveltejs/adapter-auto": "^3.3.1",
"@sveltejs/kit": "^2.9.1",
"@sveltejs/vite-plugin-svelte": "^5.0.1",
"@tailwindcss/forms": "0.5.9",
"@tailwindcss/typography": "0.5.15",
"@types/eslint": "^9.6.1",
"@types/node": "22.10.5",
"@types/suncalc": "^1.9.2",
"@watergis/maplibre-center-icon": "^3.0.1",
"autoprefixer": "10.4.20",
"dayjs": "^1.11.13",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.46.1",
"globals": "^15.13.0",
"highlight.js": "11.11.1",
"lefthook": "^1.9.0",
"maplibre-gl": "^4.7.1",
"postcss": "8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.2",
"sass-embedded": "^1.82.0",
"svelte": "^5.10.0",
"svelte-check": "^4.1.1",
"svelte-vertical-timeline": "^2.0.0",
"tailwindcss": "3.4.17",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"vite": "^6.0.3",
"vite-plugin-tailwind-purgecss": "0.3.5"
},
"dependencies": {
"maplibre-gl": "^4.7.1",
"suncalc": "^1.9.0"
},
"type": "module",
"packageManager": "[email protected]",
"engines": {
"pnpm": "^9.0.0"
}
}