build: scaffold workflow console workspace

This commit is contained in:
lda
2026-07-02 11:05:06 +07:00 Verified
parent 98f85f6726
commit 7583d41b17
17 changed files with 2101 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
{
"name": "@lda/console",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --host 127.0.0.1 --port 5173 --strictPort",
"build": "tsc -b && vite build",
"test": "vitest run",
"typecheck": "tsc -b --pretty false",
"preview": "vite preview --host 127.0.0.1"
},
"dependencies": {
"@fontsource/barlow-condensed": "5.2.8",
"@fontsource-variable/source-sans-3": "5.2.9",
"@fontsource/ibm-plex-mono": "5.2.7",
"react": "19.2.7",
"react-dom": "19.2.7"
},
"devDependencies": {
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.3",
"jsdom": "29.1.1",
"vite": "8.1.2",
"vitest": "4.1.9"
}
}