Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ node_modules/
frontend/bindings
bindings/
*.log
*.tsbuildinfo
bin/
*.dmg
*.exe
Expand Down
1 change: 0 additions & 1 deletion .kilocode/rules/rules.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ It has a TypeScript/React frontend and a Go backend. They talk together over `ws
- **Coding Style**:
- Use all lowercase filenames (except where case is actually important like Taskfile.yml)
- Import the "cn" function from "@/util/util" to do classname / clsx class merge (it uses twMerge underneath)
- For element variants use class-variance-authority
- Do NOT create private fields in classes (they are impossible to inspect)
- Use PascalCase for global consts at the top of files
- **Component Practices**:
Expand Down
1 change: 0 additions & 1 deletion .roo/rules/rules.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ It has a TypeScript/React frontend and a Go backend. They talk together over `ws
- **Coding Style**:
- Use all lowercase filenames (except where case is actually important like Taskfile.yml)
- Import the "cn" function from "@/util/util" to do classname / clsx class merge (it uses twMerge underneath)
- For element variants use class-variance-authority
- Do NOT create private fields in classes (they are impossible to inspect)
- Use PascalCase for global consts at the top of files
- **Component Practices**:
Expand Down
3 changes: 3 additions & 0 deletions frontend/types/media.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
// CSS modules
type CSSModuleClasses = { readonly [key: string]: string };

declare module "*.scss" {}
declare module "*.css" {}

declare module "*.module.css" {
const classes: CSSModuleClasses;
export default classes;
Expand Down
88 changes: 0 additions & 88 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 0 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,20 +31,17 @@
"@eslint/js": "^9.39",
"@rollup/plugin-node-resolve": "^16.0.3",
"@tailwindcss/vite": "^4.2.1",
"@types/color": "^4.2.0",
"@types/css-tree": "^2",
"@types/debug": "^4",
"@types/node": "^22.13.17",
"@types/papaparse": "^5",
"@types/pngjs": "^6.0.5",
"@types/prop-types": "^15",
"@types/react": "19",
"@types/react-dom": "19",
"@types/semver": "^7",
"@types/shell-quote": "^1",
"@types/sprintf-js": "^1",
"@types/throttle-debounce": "^5",
"@types/tinycolor2": "^1",
"@types/ws": "^8",
"@vitejs/plugin-react-swc": "4.2.3",
"@vitest/coverage-istanbul": "^3.0.9",
Expand All @@ -55,15 +52,12 @@
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0",
"node-abi": "^4.26.0",
"postcss": "^8.5.8",
"prettier": "^3.8.1",
"prettier-plugin-jsdoc": "^1.8.0",
"prettier-plugin-organize-imports": "^4.3.0",
"sass": "1.91.0",
"tailwindcss": "^4.2.1",
"tailwindcss-animate": "^1.0.7",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56",
Expand All @@ -90,9 +84,7 @@
"@xterm/xterm": "^6.0.0",
"ai": "^5.0.92",
"base64-js": "^1.5.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"color": "^4.2.3",
"colord": "^2.9.3",
"css-tree": "^3.1.0",
"dayjs": "^1.11.19",
Expand All @@ -112,8 +104,6 @@
"papaparse": "^5.5.3",
"parse-srcset": "^1.0.2",
"pngjs": "^7.0.0",
"prop-types": "^15.8.1",
"qs": "^6.15.0",
"react": "^19.2.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
Expand All @@ -138,7 +128,6 @@
"streamdown": "^1.6.10",
"tailwind-merge": "^3.5.0",
"throttle-debounce": "^5.0.2",
"tinycolor2": "^1.6.0",
"unist-util-visit": "^5.1.0",
"use-device-pixel-ratio": "^1.1.2",
"uuid": "^13.0.0",
Expand Down
Loading