-
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.47 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.47 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": "code-summarizer",
"private": true,
"version": "1.0.0",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/sekacorn/CodeSummarizer.git"
},
"author": "sekacorn <sekacorn@aol.com>",
"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",
"test:rust": "cargo test --manifest-path src-tauri/Cargo.toml",
"audit": "npm audit --audit-level=high",
"check:release": "node scripts/check-release.mjs",
"verify": "npm run audit && npm run test && npm run build && npm run test:rust && npm run check:release",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"tauri:build:windows": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/build-windows.ps1",
"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.3.31",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^6.0.2",
"sharp": "^0.34.5",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"vitest": "^4.1.9"
}
}