-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.27 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.27 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
{
"name": "openwork",
"version": "0.1.0",
"description": "A tactical agent interface for deepagentsjs",
"main": "./out/main/index.js",
"files": [
"out/",
"bin/",
"resources/",
"LICENSE",
"README.md"
],
"bin": {
"openwork": "./bin/cli.js"
},
"author": "LangChain",
"license": "MIT",
"homepage": "https://github.com/langchain-ai/openwork",
"repository": {
"type": "git",
"url": "git+https://github.com/langchain-ai/openwork.git"
},
"bugs": {
"url": "https://github.com/langchain-ai/openwork/issues"
},
"keywords": [
"ai",
"agent",
"electron",
"deepagents",
"langchain",
"langgraph",
"desktop"
],
"engines": {
"node": ">=18"
},
"scripts": {
"format": "prettier --write .",
"lint": "eslint --cache .",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "npm run typecheck && electron-vite build"
},
"dependencies": {
"electron": "^39.2.6",
"@langchain/anthropic": "^1.3.10",
"@langchain/core": "1.1.15",
"@langchain/langgraph": "^1.0.15",
"@langchain/langgraph-checkpoint": "^1.0.0",
"@langchain/langgraph-sdk": "^1.5.3",
"@langchain/openai": "^1.2.2",
"@langchain/google-genai": "^2.1.10",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"deepagents": "^1.5.0",
"electron-store": "^8.2.0",
"lucide-react": "^0.469.0",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^4.4.0",
"remark-gfm": "^4.0.1",
"shiki": "^3.21.0",
"sql.js": "^1.12.0",
"tailwind-merge": "^2.6.0",
"uuid": "^11.0.5",
"zustand": "^5.0.3"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "^3.0.0",
"@electron-toolkit/eslint-config-ts": "^3.1.0",
"@electron-toolkit/tsconfig": "^2.0.0",
"@tailwindcss/vite": "^4.0.0",
"@types/node": "^22.19.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^5.1.1",
"electron": "^39.2.6",
"electron-vite": "^5.0.0",
"eslint": "^9.39.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"prettier": "^3.7.4",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"tailwindcss": "^4.0.0",
"typescript": "^5.9.3",
"vite": "^7.2.6"
},
"packageManager": "pnpm@10.28.0+sha512.05df71d1421f21399e053fde567cea34d446fa02c76571441bfc1c7956e98e363088982d940465fd34480d4d90a0668bc12362f8aa88000a64e83d0b0e47be48"
}