-
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) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.78 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": "torqlens",
"version": "1.0.0",
"private": true,
"description": "TorqLens - AI Plant & Weed Scanner. A product of Torq Business Solutions.",
"scripts": {
"dev": "next dev -p 3000",
"build": "next build",
"start": "next start -p 3000",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"cap:check-env": "node scripts/check-cap-env.mjs",
"cap:build": "npm run cap:check-env && cross-env CAP_BUILD=1 next build",
"cap:sync": "npm run cap:build && cap sync ios",
"cap:open": "cap open ios",
"ios": "npm run cap:sync && cap open ios",
"icons": "node scripts/generate-icons.mjs"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.70.1",
"@capacitor/app": "^6.0.2",
"@capacitor/camera": "^6.1.2",
"@capacitor/core": "^6.2.0",
"@capacitor/haptics": "^6.0.2",
"@capacitor/ios": "^6.2.0",
"@capacitor/preferences": "^6.0.3",
"@capacitor/share": "^6.0.3",
"@capacitor/splash-screen": "^6.0.3",
"@capacitor/status-bar": "^6.0.2",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.23.2",
"lucide-react": "^0.525.0",
"next": "^16.1.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@capacitor/cli": "^6.2.0",
"@tailwindcss/postcss": "^4",
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"cross-env": "^7.0.3",
"eslint": "^9",
"eslint-config-next": "^16.1.1",
"sharp": "^0.34.3",
"tailwindcss": "^4",
"tw-animate-css": "^1.3.5",
"typescript": "^5"
}
}