-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 2.23 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
49
50
51
52
53
54
55
56
57
58
{
"name": "api-manager-lite",
"version": "2.1.0",
"private": true,
"description": "A lightweight Tauri-based macOS API key and model endpoint manager.",
"author": "API Manager Lite contributors",
"license": "AGPL-3.0-only",
"homepage": "https://github.com/W-RONS/API-Manager-Lite",
"repository": {
"type": "git",
"url": "https://github.com/W-RONS/API-Manager-Lite.git"
},
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"start": "tauri dev",
"dev": "tauri dev",
"dev:web": "vite",
"build": "pnpm build:mac",
"build:app": "bash scripts/build-app.sh",
"build:zip": "bash scripts/build-zip.sh",
"build:web": "pnpm typecheck && vite build",
"build:check": "pnpm lint && pnpm test && pnpm rust:test && pnpm format:check",
"build:unpack": "tauri build --no-bundle",
"build:mac": "bash scripts/build-macos.sh",
"typecheck": "tsc --noEmit -p tsconfig.web.json",
"test": "vitest run --config vitest.api-manager.config.ts",
"lint": "biome lint vite.config.ts vitest.api-manager.config.ts packages/shared/apiManager.ts src/renderer/src && pnpm typecheck",
"rust:check": "cargo check --manifest-path src-tauri/Cargo.toml",
"rust:test": "cargo test --manifest-path src-tauri/Cargo.toml",
"format": "biome format --write vite.config.ts vitest.api-manager.config.ts packages/shared/apiManager.ts src/renderer/src && cargo fmt --manifest-path src-tauri/Cargo.toml",
"format:check": "biome format vite.config.ts vitest.api-manager.config.ts packages/shared/apiManager.ts src/renderer/src && cargo fmt --manifest-path src-tauri/Cargo.toml --check"
},
"dependencies": {
"@tauri-apps/api": "2.11.1"
},
"devDependencies": {
"@ant-design/v5-patch-for-react-19": "^1.0.3",
"@biomejs/biome": "2.2.4",
"@swc/core": "^1.15.8",
"@tauri-apps/cli": "2.11.4",
"@types/node": "24.10.4",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react-swc": "^3.9.0",
"antd": "5.27.0",
"i18next": "^23.11.5",
"lucide-react": "^0.525.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-i18next": "^14.1.2",
"typescript": "~5.8.3",
"vite": "7.3.6",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@10.27.0"
}