-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1012 Bytes
/
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
{
"name": "aero-weather",
"description": "A Tauri App",
"author": "Piotr Płaczek <[email protected]>",
"contributors": ["kilobyte <https://x.com/1000kilobytes>"],
"license": "GPL-3.0",
"private": false,
"version": "1.0.2",
"type": "module",
"engines": {
"npm": ">=10.0.0",
"node": ">=20.0.0"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"lint:write": "biome check --write"
},
"repository": {
"type": "git",
"url": "https://github.com/piotrpdev/aero-weather"
},
"dependencies": {
"@fontsource-variable/roboto-flex": "^5.0.16",
"@tauri-apps/api": "^2.0.0-beta.15",
"normalize.css": "^8.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@tauri-apps/cli": ">=2.0.0-beta.22",
"@types/node": "^22.5.1",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.2.1",
"typescript": "^5.0.2",
"vite": "^5.0.0"
}
}