-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.76 KB
/
Copy pathpackage.json
File metadata and controls
127 lines (127 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "piagentui",
"version": "0.6.10",
"description": "Professional AI Agent Desktop & Web UI — sessions, MCP tools, skills browser, voice input, terminal, file explorer, and Tauri desktop app. Works with Pi Agent, Claude Code, Codex, OpenCode, Cursor, and any SSE-compatible agent.",
"homepage": "https://github.com/lehhair/OpenCodeUI",
"repository": {
"type": "git",
"url": "https://github.com/lehhair/OpenCodeUI.git"
},
"license": "GPL-3.0-only",
"type": "module",
"scripts": {
"dev": "vite",
"typecheck": "tsc -b",
"typecheck:extensions": "tsc -p tsconfig.extension.json --noEmit",
"type-check": "npm run typecheck",
"build": "tsc -b && vite build",
"icons:tauri": "tauri icon src-tauri/app-icon.manifest.json -o src-tauri/icons",
"lint": "eslint .",
"format": "prettier . --write",
"format:check": "prettier . --check",
"test": "vitest",
"test:run": "vitest run",
"validate": "npm run typecheck && npm run typecheck:extensions && npm run lint && npm run test:run && npm run build",
"release:prepare": "node scripts/prepare-release.mjs",
"check": "npm run format:check && npm run lint && npm run test:run && npm run build",
"preview": "vite preview",
"tauri": "tauri",
"postinstall": "node scripts/copy-material-icons.mjs"
},
"dependencies": {
"@codemirror/commands": "^6.10.3",
"@codemirror/search": "^6.7.0",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.41.1",
"@primer/octicons-react": "^19.28.0",
"@streamdown/math": "^1.0.2",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-fs": "^2.4.5",
"@tauri-apps/plugin-http": "^2.5.7",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-opener": "^2.5.3",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-serialize": "^0.14.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/xterm": "^6.0.0",
"clsx": "^2.1.1",
"diff": "^8.0.4",
"i18next": "^26.0.1",
"i18next-browser-languagedetector": "^8.2.1",
"lucide-react": "^1.7.0",
"motion": "^12.38.0",
"qrcode": "^1.5.4",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-i18next": "^17.0.1",
"shiki": "^4.0.2",
"streamdown": "^2.5.0",
"ws": "^8.21.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@tailwindcss/vite": "^4.2.2",
"@tauri-apps/cli": "^2.10.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/diff": "^7.0.2",
"@types/node": "^25.5.0",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"jsdom": "^29.0.1",
"material-icon-theme": "^5.32.0",
"prettier": "^3.6.2",
"tailwindcss": "^4.2.2",
"typescript": "~5.9.3",
"typescript-eslint": "^8.57.2",
"vite": "^8.0.3",
"vitest": "^4.1.2"
},
"pi": {
"extensions": [
"./extensions/piagentui-server.ts"
]
},
"keywords": [
"pi-package",
"pi-agent",
"pi-extension",
"agent-ui",
"chat-ui",
"mcp",
"voice-input",
"ai-agent-interface",
"coding-copilot",
"desktop-agent",
"tauri-app",
"claude-code-ui",
"codex-ui",
"opencode-ui",
"cursor-ui",
"copilot-ui",
"mcp-client",
"agent-workspace",
"session-manager",
"ai-chat-desktop"
],
"files": [
"dist",
"extensions",
"README.md",
"README.pt-BR.md",
"README.es.md",
"README.ja.md",
"README_EN.md",
"docs/superpowers/specs",
"package.json"
]
}