-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 932 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 932 Bytes
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
{
"name": "neallm",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "NeaLLM: Local LLM UI with support for Ollama and LM Studio.",
"repository": {
"type": "git",
"url": "https://github.com/NeaDigitra/NeaLLM.git"
},
"author": "NeaDigitra <info@neadigitra.com>",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint . --ext .ts,.tsx --fix"
},
"dependencies": {
"@vscode/webview-ui-toolkit": "^1.4.0",
"lucide-react": "^0.292.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^10.1.0"
},
"devDependencies": {
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/vscode-webview": "^1.57.1",
"@vitejs/plugin-react": "^4.2.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"typescript": "^5.5.0",
"vite": "^5.2.0"
}
}