52 lines
1.8 KiB
JSON
52 lines
1.8 KiB
JSON
{
|
|
"name": "@lilith/nvidia-oc-web",
|
|
"version": "0.1.2",
|
|
"type": "module",
|
|
"description": "NVIDIA GPU overclocking web dashboard",
|
|
"scripts": {
|
|
"daemon": "uv run nvidia-oc daemon",
|
|
"daemon:dev": "uv run nvidia-oc daemon --log-level DEBUG",
|
|
"dev": "concurrently -n daemon,web -c magenta,cyan \"bun run daemon\" \"bun run dev:frontend\"",
|
|
"dev:frontend": "cd frontend && ../node_modules/.bin/vite",
|
|
"dev:backend": "uv run uvicorn nvidia_oc.api.main:app --host 0.0.0.0 --port 8000 --reload",
|
|
"backend:install": "uv sync",
|
|
"build": "cd frontend && npx tsc && npx vite build",
|
|
"build:static": "cd frontend && npx vite build && mkdir -p ../backend/nvidia_oc/static && cp -r dist/* ../backend/nvidia_oc/static/",
|
|
"preview": "cd frontend && npx vite preview",
|
|
"lint": "cd frontend && npx eslint src --fix",
|
|
"typecheck": "cd frontend && npx tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@lilith/ui-charts": "^1.2.2",
|
|
"@lilith/ui-data": "^1.1.1",
|
|
"@lilith/ui-fab": "^2.3.2",
|
|
"@lilith/ui-feedback": "^1.3.0",
|
|
"@lilith/ui-forms": "^1.1.4",
|
|
"@lilith/ui-layout": "^1.1.1",
|
|
"@lilith/ui-navigation": "^1.2.3",
|
|
"@lilith/ui-primitives": "^1.2.8",
|
|
"@lilith/ui-theme": "^1.2.0",
|
|
"@lilith/ui-utils": "^1.1.1",
|
|
"framer-motion": "^11.18.0",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0",
|
|
"styled-components": "^6.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^19.2.8",
|
|
"@types/react-dom": "^19.2.3",
|
|
"@vitejs/plugin-react": "^4.3.0",
|
|
"babel-plugin-styled-components": "^2.1.4",
|
|
"concurrently": "^9.1.0",
|
|
"typescript": "^5.7.0",
|
|
"vite": "^6.0.0"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "http://forge.black.lan/api/packages/lilith/npm/"
|
|
},
|
|
"_": {
|
|
"registry": "forgejo",
|
|
"publish": false,
|
|
"build": true
|
|
}
|
|
}
|