-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.5 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 3.5 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
{
"name": "construct-frontend",
"private": true,
"version": "0.1.0",
"description": "Frontend for construct.computer AI agent platform",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"build:capacitor": "pnpm build:capacitor:staging",
"build:capacitor:staging": "tsc -b && vite build --mode capacitor-staging",
"build:capacitor:production": "tsc -b && vite build --mode capacitor-production",
"typecheck": "tsc -b",
"lint": "eslint .",
"test": "vitest run",
"cap:sync": "pnpm build:capacitor && capacitor sync",
"cap:sync:staging": "pnpm build:capacitor:staging && capacitor sync",
"cap:sync:production": "pnpm build:capacitor:production && capacitor sync",
"cap:open:android": "capacitor open android",
"cap:open:ios": "capacitor open ios",
"assets:capacitor": "python3 scripts/generate-capacitor-assets.py",
"ota:bundle": "node scripts/publish-ota.mjs --skipBuild",
"ota:publish:staging": "node scripts/publish-ota.mjs --env staging --channel staging --upload",
"ota:publish:production": "node scripts/publish-ota.mjs --env production --channel production --upload",
"android:add": "capacitor add android",
"android:run": "pnpm build:capacitor && capacitor sync android && capacitor run android",
"ios:add": "capacitor add ios",
"ios:run": "pnpm build:capacitor && capacitor sync ios && capacitor run ios",
"preview": "pnpm build && wrangler dev",
"wallpaper": "bash scripts/convert-wallpaper.sh",
"encode-alpha": "bash scripts/encode-alpha-gif.sh",
"deploy": "pnpm build && wrangler deploy",
"doctor": "npx react-doctor@latest"
},
"dependencies": {
"@capacitor/app": "^8.1.0",
"@capacitor/background-runner": "^3.0.0",
"@capacitor/core": "^8.3.4",
"@capacitor/inappbrowser": "^4.0.0",
"@capacitor/keyboard": "^8.0.3",
"@capacitor/local-notifications": "^8.2.0",
"@capacitor/push-notifications": "^8.1.1",
"@capacitor/status-bar": "^8.0.2",
"@capgo/capacitor-updater": "^8.46.1",
"@jvmr/pptx-to-html": "^1.0.1",
"@monaco-editor/react": "^4.7.0",
"@tailwindcss/vite": "^4.2.1",
"@tanstack/react-table": "8.21.3",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"clsx": "^2.1.1",
"driver.js": "^1.4.0",
"highlight.js": "^11.11.1",
"katex": "^0.16.45",
"lucide-react": "^0.575.0",
"mammoth": "^1.12.0",
"mermaid": "^11.15.0",
"monaco-editor": "^0.55.1",
"papaparse": "^5.5.3",
"posthog-js": "^1.391.6",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-markdown": "^10.1.0",
"rehype-highlight": "^7.0.2",
"rehype-katex": "^7.0.1",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.1",
"unified": "^11.0.5",
"xlsx": "^0.18.5",
"zustand": "^5.0.11"
},
"devDependencies": {
"@capacitor/android": "^8.3.4",
"@capacitor/cli": "^8.3.4",
"@capacitor/ios": "^8.3.4",
"@cloudflare/vite-plugin": "^1.30.3",
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.48.0",
"vite": "^7.3.1",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^4.1.5",
"wrangler": "^4.83.0"
}
}