Skip to content

Commit e46cf78

Browse files
authored
remove unused deps from package.json (#3179)
1 parent b3f5496 commit e46cf78

File tree

6 files changed

+4
-101
lines changed

6 files changed

+4
-101
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ node_modules/
77
frontend/bindings
88
bindings/
99
*.log
10+
*.tsbuildinfo
1011
bin/
1112
*.dmg
1213
*.exe

.kilocode/rules/rules.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ It has a TypeScript/React frontend and a Go backend. They talk together over `ws
3333
- **Coding Style**:
3434
- Use all lowercase filenames (except where case is actually important like Taskfile.yml)
3535
- Import the "cn" function from "@/util/util" to do classname / clsx class merge (it uses twMerge underneath)
36-
- For element variants use class-variance-authority
3736
- Do NOT create private fields in classes (they are impossible to inspect)
3837
- Use PascalCase for global consts at the top of files
3938
- **Component Practices**:

.roo/rules/rules.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ It has a TypeScript/React frontend and a Go backend. They talk together over `ws
3333
- **Coding Style**:
3434
- Use all lowercase filenames (except where case is actually important like Taskfile.yml)
3535
- Import the "cn" function from "@/util/util" to do classname / clsx class merge (it uses twMerge underneath)
36-
- For element variants use class-variance-authority
3736
- Do NOT create private fields in classes (they are impossible to inspect)
3837
- Use PascalCase for global consts at the top of files
3938
- **Component Practices**:

frontend/types/media.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
// CSS modules
55
type CSSModuleClasses = { readonly [key: string]: string };
66

7+
declare module "*.scss" {}
8+
declare module "*.css" {}
9+
710
declare module "*.module.css" {
811
const classes: CSSModuleClasses;
912
export default classes;

package-lock.json

Lines changed: 0 additions & 88 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -31,20 +31,17 @@
3131
"@eslint/js": "^9.39",
3232
"@rollup/plugin-node-resolve": "^16.0.3",
3333
"@tailwindcss/vite": "^4.2.1",
34-
"@types/color": "^4.2.0",
3534
"@types/css-tree": "^2",
3635
"@types/debug": "^4",
3736
"@types/node": "^22.13.17",
3837
"@types/papaparse": "^5",
3938
"@types/pngjs": "^6.0.5",
40-
"@types/prop-types": "^15",
4139
"@types/react": "19",
4240
"@types/react-dom": "19",
4341
"@types/semver": "^7",
4442
"@types/shell-quote": "^1",
4543
"@types/sprintf-js": "^1",
4644
"@types/throttle-debounce": "^5",
47-
"@types/tinycolor2": "^1",
4845
"@types/ws": "^8",
4946
"@vitejs/plugin-react-swc": "4.2.3",
5047
"@vitest/coverage-istanbul": "^3.0.9",
@@ -55,15 +52,12 @@
5552
"eslint-config-prettier": "^10.1.8",
5653
"globals": "^17.4.0",
5754
"node-abi": "^4.26.0",
58-
"postcss": "^8.5.8",
5955
"prettier": "^3.8.1",
6056
"prettier-plugin-jsdoc": "^1.8.0",
6157
"prettier-plugin-organize-imports": "^4.3.0",
6258
"sass": "1.91.0",
6359
"tailwindcss": "^4.2.1",
64-
"tailwindcss-animate": "^1.0.7",
6560
"ts-node": "^10.9.2",
66-
"tslib": "^2.8.1",
6761
"tsx": "^4.21.0",
6862
"typescript": "^5.9.3",
6963
"typescript-eslint": "^8.56",
@@ -90,9 +84,7 @@
9084
"@xterm/xterm": "^6.0.0",
9185
"ai": "^5.0.92",
9286
"base64-js": "^1.5.1",
93-
"class-variance-authority": "^0.7.1",
9487
"clsx": "^2.1.1",
95-
"color": "^4.2.3",
9688
"colord": "^2.9.3",
9789
"css-tree": "^3.1.0",
9890
"dayjs": "^1.11.19",
@@ -112,8 +104,6 @@
112104
"papaparse": "^5.5.3",
113105
"parse-srcset": "^1.0.2",
114106
"pngjs": "^7.0.0",
115-
"prop-types": "^15.8.1",
116-
"qs": "^6.15.0",
117107
"react": "^19.2.0",
118108
"react-dnd": "^16.0.1",
119109
"react-dnd-html5-backend": "^16.0.1",
@@ -138,7 +128,6 @@
138128
"streamdown": "^1.6.10",
139129
"tailwind-merge": "^3.5.0",
140130
"throttle-debounce": "^5.0.2",
141-
"tinycolor2": "^1.6.0",
142131
"unist-util-visit": "^5.1.0",
143132
"use-device-pixel-ratio": "^1.1.2",
144133
"uuid": "^13.0.0",

0 commit comments

Comments
 (0)