mirror of
https://github.com/Shubhamsaboo/awesome-llm-apps.git
synced 2026-04-30 15:20:47 -05:00
21 lines
475 B
JSON
21 lines
475 B
JSON
{
|
|
"name": "guided-llm-chat",
|
|
"version": "1.0.0",
|
|
"description": "Local LLM chat with guided responses",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"start": "electron .",
|
|
"dev": "concurrently \"npm run start\" \"npm run watch\"",
|
|
"watch": "nodemon --exec npm run start",
|
|
"build": "electron-builder"
|
|
},
|
|
"devDependencies": {
|
|
"electron": "^27.0.0",
|
|
"concurrently": "^8.2.0",
|
|
"nodemon": "^3.0.0"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.6.0"
|
|
}
|
|
}
|