-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.76 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 3.76 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
{
"name": "okami-code",
"version": "1.1.0-beta",
"description": "Local-first desktop cockpit with an Okami-owned multi-provider runtime, communication, planning, usage intelligence, and memory.",
"author": "OkamiOps",
"homepage": "https://github.com/OkamiOps/OkamiCode",
"repository": {
"type": "git",
"url": "https://github.com/OkamiOps/OkamiCode.git"
},
"bugs": {
"url": "https://github.com/OkamiOps/OkamiCode/issues"
},
"private": true,
"type": "module",
"main": "./out/main/index.js",
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"rebuild:native": "electron-rebuild -f -w better-sqlite3-multiple-ciphers,node-pty",
"typecheck": "tsc -b --pretty false",
"lint": "eslint . --max-warnings 0",
"format:check": "prettier --check .",
"test": "vitest run",
"preflight:external-controller": "node scripts/preflight-external-controller.mjs",
"preflight:external-workspace": "node scripts/preflight-external-workspace.mjs",
"prepare:mac-rollback": "node scripts/mac-app-rollback.mjs",
"install:mac-app": "node scripts/mac-app-install.mjs",
"test:e2e": "playwright test",
"provision:runtimes": "node scripts/provision-managed-runtimes.mjs",
"package:mac:base": "pnpm provision:runtimes && pnpm rebuild:native && electron-vite build && node scripts/package-mac-app.mjs",
"package": "OKAMI_PACKAGE_PROFILE=production OKAMI_EXTERNAL_VALIDATION_BUILD=0 pnpm package:mac:base",
"package:mac:validation": "OKAMI_PACKAGE_PROFILE=external-validation OKAMI_EXTERNAL_VALIDATION_BUILD=1 pnpm package:mac:base",
"verify:managed-package": "node scripts/verify-managed-runtime-package.mjs",
"check": "pnpm typecheck && pnpm lint && pnpm format:check && pnpm test"
},
"dependencies": {
"@agentclientprotocol/sdk": "0.21.0",
"@heroui/react": "3.2.2",
"@heroui/styles": "3.2.2",
"@openai/codex": "0.145.0",
"@tanstack/react-query": "5.101.2",
"@xai-official/grok": "0.2.111",
"@xterm/addon-fit": "0.11.0",
"@xterm/xterm": "6.0.0",
"better-sqlite3-multiple-ciphers": "12.11.1",
"chokidar": "5.0.0",
"diff": "^9.0.0",
"diff2html": "3.4.56",
"execa": "10.0.0",
"gray-matter": "4.0.3",
"imapflow": "1.4.7",
"lucide-react": "1.25.0",
"mailparser": "3.9.14",
"node-pty": "1.1.0",
"nodemailer": "9.0.3",
"opencode-ai": "1.18.3",
"react": "19.2.7",
"react-dom": "19.2.7",
"react-markdown": "10.1.0",
"react-router-dom": "7.18.1",
"recharts": "3.9.2",
"rehype-highlight": "^7.0.2",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "4.0.1",
"tailwindcss": "4.3.3",
"zod": "4.4.3",
"zustand": "5.0.14"
},
"devDependencies": {
"@eslint/js": "9.39.5",
"@playwright/test": "1.61.1",
"@tailwindcss/vite": "4.3.3",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/diff": "^8.0.0",
"@types/mailparser": "3.4.6",
"@types/node": "26.1.1",
"@types/nodemailer": "8.0.1",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "5.2.0",
"electron": "43.1.1",
"electron-builder": "26.15.3",
"electron-rebuild": "npm:@electron/rebuild@4.2.0",
"electron-vite": "5.0.0",
"eslint": "9.39.5",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react-hooks": "7.1.1",
"jsdom": "29.1.1",
"prettier": "3.9.5",
"typescript": "6.0.3",
"typescript-eslint": "8.64.0",
"vite": "7.3.6",
"vitest": "4.1.10"
},
"packageManager": "pnpm@11.5.2+sha512.71c631e382066efc25625d5cf029075de07b61b37f6e27350fbd84b1bda5864c8c1967adc280776b45c30a715c0359a3be08fef42d5bb09e2b99029979692916"
}