mirror of
https://github.com/OpenBMB/ChatDev.git
synced 2026-04-25 11:18:06 +00:00
This PR provides full cross-platform support (Windows/macOS/Linux) for the development environment. Key Changes Makefile: Refactored dev and stop targets using cross-env and kill-port to support PowerShell/CMD. Compatibility: Replaced Unix-specific grep/awk in the help target with a Python one-liner. Bug Fix: Added encoding='utf-8' to tools/sync_vuegraphs.py to prevent charmap decode errors on Windows systems. Dependencies: Added necessary dev-tools to package.json files to ensure a seamless "clone and run" experience.
33 lines
743 B
JSON
Executable File
33 lines
743 B
JSON
Executable File
{
|
|
"name": "devall",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"license": "Apache-2.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"@vue-flow/background": "^1.3.2",
|
|
"@vue-flow/controls": "^1.1.3",
|
|
"@vue-flow/core": "^1.47.0",
|
|
"@vue-flow/minimap": "^1.5.4",
|
|
"js-yaml": "^4.1.0",
|
|
"markdown-it": "^14.1.0",
|
|
"markdown-it-anchor": "^9.2.0",
|
|
"vue": "^3.5.22",
|
|
"vue-router": "^4.6.0"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.39.1",
|
|
"@vitejs/plugin-vue": "^6.0.1",
|
|
"cross-env": "^10.1.0",
|
|
"eslint": "^9.39.1",
|
|
"eslint-plugin-vue": "^10.5.1",
|
|
"globals": "^16.5.0",
|
|
"vite": "^7.1.7"
|
|
}
|
|
}
|