Files
openwork/package.json
T
2026-01-14 11:01:05 -08:00

107 lines
3.1 KiB
JSON

{
"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.7",
"@langchain/core": "^1.1.12",
"@langchain/langgraph": "^1.0.15",
"@langchain/langgraph-checkpoint": "^1.0.0",
"@langchain/langgraph-sdk": "^1.5.3",
"@langchain/openai": "^1.2.1",
"@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.4.1",
"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"
}
}