-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.08 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.08 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
{
"name": "code-summarizer",
"private": true,
"version": "0.1.0",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/sekacorn/CodeSummarizer.git"
},
"author": "sekacorn",
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/sekacorn/CodeSummarizer",
"bugs": {
"url": "https://github.com/sekacorn/CodeSummarizer/issues"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"generate-icons": "node create-icon.cjs && tauri icon app-icon.png"
},
"dependencies": {
"@tauri-apps/api": "^1.5.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@tauri-apps/cli": "^1.5.9",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react": "^4.2.1",
"sharp": "^0.34.5",
"typescript": "^5.3.3",
"vite": "^5.0.8",
"vitest": "^1.0.0"
}
}