-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.46 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
{
"name": "video-window-recorder",
"productName": "OpenScene",
"version": "0.7.1",
"description": "OpenScene secure Electron MVP for selected-window preview and local WebM recording.",
"main": "./out/main/index.js",
"type": "module",
"scripts": {
"dev": "electron-vite dev",
"setup:local-ai": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/install-local-ai-runtimes.ps1",
"typecheck": "tsc --noEmit -p tsconfig.node.json && tsc --noEmit -p tsconfig.web.json",
"test": "vitest run",
"build": "npm run typecheck && electron-vite build",
"preview": "electron-vite preview",
"package": "npm run build && electron-builder --publish never"
},
"dependencies": {
"@langchain/anthropic": "^1.5.2",
"@langchain/core": "^1.2.3",
"@langchain/google-genai": "^2.2.0",
"@langchain/langgraph": "^1.4.8",
"@langchain/ollama": "^1.3.0",
"@langchain/openai": "^1.5.5",
"@theorvane/type-mcp": "0.3.1",
"@vitejs/plugin-react": "5.1.4",
"electron-updater": "^6.8.9",
"electron-vite": "^5.0.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^26.1.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"electron": "^43.1.1",
"electron-builder": "^26.0.12",
"typescript": "^7.0.2",
"vite": "7.3.6",
"vitest": "^4.1.10"
},
"author": {
"name": "Theorvane",
"email": "sjungwon03@gmail.com"
}
}