-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.32 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.32 KB
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
{
"name": "localekit",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:tauri": "cross-env TAURI_BUILD=1 next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"tauri:dev": "tauri dev",
"tauri:build": "dotenv -e .env -- tauri build"
},
"dependencies": {
"@ai-sdk/anthropic": "^2.0.38",
"@ai-sdk/mistral": "^2.0.20",
"@ai-sdk/openai": "^2.0.56",
"@tailwindcss/typography": "^0.5.19",
"@tauri-apps/api": "^2.8.0",
"@tauri-apps/plugin-dialog": "^2.4.2",
"@tauri-apps/plugin-os": "^2.3.1",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-shell": "^2.3.1",
"ai": "^5.0.81",
"lucide-react": "^0.468.0",
"next": "^15.1.8",
"next-intl": "^4.6.1",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.0.0",
"@tauri-apps/cli": "^2.5.1",
"@types/node": "^22.10.5",
"@types/react": "^19.0.6",
"@types/react-dom": "^19.0.3",
"cross-env": "^10.1.0",
"dotenv-cli": "^11.0.0",
"eslint": "^8.57.1",
"eslint-config-next": "^15.1.8",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.2"
}
}