-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
109 lines (109 loc) · 2.89 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
102
103
104
105
106
107
108
109
{
"name": "open-meteo-website",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "svelte-kit sync && vite dev --host",
"build": "svelte-kit sync && vite build -l info",
"staging": "NODE_ENV=development vite build --mode development",
"rename_index_files": "node scripts/rename_to_index_html.js",
"preview": "vite preview --host",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"update-components": "npx shadcn-svelte@latest add -y -o accordion alert button calendar checkbox dialog dropdown-menu input label popover range-calendar select separator sonner toggle toggle-group"
},
"devDependencies": {
"@eslint/compat": "^1.2.5",
"@internationalized/date": "^3.7.0",
"@sveltejs/adapter-static": "^3.0.8",
"@sveltejs/kit": "^2.19.0",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"bits-ui": "^1.3.5",
"clsx": "^2.1.1",
"cookie": "^1.0.2",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-svelte": "^3.1.0",
"formsnap": "^2.0.0",
"globals": "^16.0.0",
"lucide-svelte": "^0.479.0",
"mdsvex": "^0.12.3",
"mode-watcher": "^0.5.1",
"prettier": "^3.5.0",
"prettier-plugin-svelte": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"svelte": "^5.23.0",
"svelte-check": "^4.1.4",
"sveltekit-superforms": "^2.24.0",
"tailwind-merge": "^3.0.1",
"tailwind-variants": "^1.0.0",
"tailwindcss": "^4.0.3",
"typescript": "^5.8.2",
"vite": "^6.2.0",
"zod": "^3.24.1"
},
"dependencies": {
"@shikijs/transformers": "^3.2.1",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.0.0",
"autoprefixer": "^10.4.20",
"highcharts": "12.1.2",
"openmeteo": "^1.1.4",
"prism-themes": "^1.9.0",
"rollup-plugin-visualizer": "^5.14.0",
"shiki": "^3.2.1",
"simple-icons": "^14.10.0",
"svelte-persisted-store": "^0.12.0",
"typescript-eslint": "^8.26.0",
"vite-plugin-tailwindcss-cleaner": "^1.1.0"
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [
{
"type": "build",
"scope": "deps",
"release": "patch"
}
]
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "build",
"section": "Dependencies and Other Build Updates",
"hidden": false
}
]
}
}
],
"@semantic-release/github"
]
}
}