treewide: adapt for monorepo layout; initial TUI work

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: Id40b5f5ccb55a8a1ea2793192a38f0256a6a6964
This commit is contained in:
raf 2026-02-07 12:43:59 +03:00
commit 33ec901788
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF
35 changed files with 1699 additions and 413 deletions

30
packages/web/package.json Normal file
View file

@ -0,0 +1,30 @@
{
"name": "@ns/web",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"check": "tsc --noEmit",
"lint": "eslint src --ext .ts,.tsx",
"build": "pnpm check && pnpm lint && vite build",
"preview": "vite preview"
},
"dependencies": {
"@ns/core": "workspace:*",
"@ns/ui-utils": "workspace:*"
},
"devDependencies": {
"@types/node": "^25.0.10",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"lucide-solid": "^0.562.0",
"prettier": "^3.8.1",
"solid-js": "^1.9.10",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1",
"vite": "^7.3.1",
"vite-plugin-solid": "^2.11.10"
}
}