-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.58 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.58 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "thumbcode",
"version": "1.0.3",
"packageManager": "pnpm@10.11.0",
"description": "Code with your thumbs. A decentralized multi-agent mobile development platform.",
"scripts": {
"setup": "./scripts/setup.sh",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:integration": "vitest run --config vitest.config.integration.ts",
"test:integration:record": "POLLY_MODE=record vitest run --config vitest.config.integration.ts",
"test:e2e:web": "playwright test",
"test:e2e:web:update": "playwright test --update-snapshots",
"cap:sync": "cap sync",
"cap:open:ios": "cap open ios",
"cap:open:android": "cap open android",
"cap:build": "vite build && cap sync",
"serve:web": "vite preview",
"generate:tokens": "npx tsx tools/generate-tokens.ts",
"generate:icons": "npx tsx tools/generate-icons.ts",
"generate:all": "npx tsx tools/generate-tokens.ts && npx tsx tools/generate-icons.ts",
"lint:duplication": "jscpd",
"audit:prod": "pnpm audit --prod --audit-level=moderate"
},
"dependencies": {
"@ai-sdk/amazon-bedrock": "^4.0.63",
"@ai-sdk/anthropic": "^3.0.46",
"@ai-sdk/azure": "^3.0.32",
"@ai-sdk/cohere": "^3.0.21",
"@ai-sdk/deepseek": "^2.0.20",
"@ai-sdk/google": "^3.0.30",
"@ai-sdk/groq": "^3.0.24",
"@ai-sdk/mcp": "^1.0.21",
"@ai-sdk/mistral": "^3.0.20",
"@ai-sdk/openai": "^3.0.31",
"@ai-sdk/xai": "^3.0.57",
"@anthropic-ai/sdk": "^0.32.0",
"@aparajita/capacitor-biometric-auth": "^10.0.0",
"@capacitor/android": "^8.1.0",
"@capacitor/core": "^8.1.0",
"@capacitor/device": "^8.0.0",
"@capacitor/filesystem": "^8.1.1",
"@capacitor/ios": "^8.1.0",
"ai": "^6.0.97",
"capacitor-secure-storage-plugin": "^0.13.0",
"date-fns": "^4.1.0",
"diff": "^8.0.3",
"docx": "^9.5.3",
"exceljs": "^4.4.0",
"immer": "^11.1.4",
"isomorphic-git": "^1.27.0",
"jspdf": "^4.2.0",
"lodash-es": "^4.17.23",
"lucide-react": "^0.563.0",
"openai": "^6.25.0",
"pptxgenjs": "^4.0.1",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-router-dom": "^7.13.0",
"tailwindcss": "^4.2.1",
"zod": "^3.23.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@capacitor/cli": "^8.1.0",
"@commitlint/cli": "^20.0.0",
"@commitlint/config-conventional": "^20.0.0",
"@playwright/test": "^1.57.0",
"@tailwindcss/vite": "^4.2.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/diff": "^8.0.0",
"@types/lodash-es": "^4.17.0",
"@types/react": "~19.2.14",
"@types/react-dom": "~19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^4.0.18",
"jscpd": "^4.0.8",
"jsdom": "^28.0.0",
"msw": "^2.12.10",
"postcss": "^8.5.6",
"typescript": "~5.6.0",
"vite": "^7.3.1",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.0.18"
},
"pnpm": {
"overrides": {
"tar": ">=7.5.8",
"minimatch": ">=10.2.1",
"ajv": ">=8.18.0"
},
"overrideComments": {
"tar": "@capacitor/cli@8.1.0 pins tar@7.5.7 — no upstream fix yet",
"minimatch": "exceljs@4.4.0 transitives pin minimatch@3/5 — no upstream fix yet",
"ajv": "@commitlint/config-validator pins ajv@8.17.1 — ReDoS fix in 8.18.0"
}
},
"private": true
}