30 lines
821 B
JSON
30 lines
821 B
JSON
{
|
|
"name": "light-chat",
|
|
"version": "0.1.0",
|
|
"description": "Lightweight chat app for connecting to LLM APIs",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"lint": "eslint src --ext js,jsx --report-unused-disable-directives --max-warnings 0"
|
|
},
|
|
"dependencies": {
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"@capacitor/core": "^5.0.0",
|
|
"@capacitor/cli": "^5.0.0",
|
|
"@capacitor/android": "^5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@vitejs/plugin-react": "^4.0.0",
|
|
"vite": "^4.4.0",
|
|
"vitest": "^0.34.0",
|
|
"@testing-library/react": "^14.0.0",
|
|
"@testing-library/jest-dom": "^5.17.0",
|
|
"@testing-library/user-event": "^14.5.0",
|
|
"jsdom": "^22.0.0"
|
|
}
|
|
} |