-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.29 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "quick-tabby",
"version": "1.1.1",
"type": "module",
"private": true,
"scripts": {
"prepare": "panda codegen",
"dev": "panda codegen && vite",
"dev:preview": "panda codegen && vite --config vite.config.dev.ts",
"build": "panda codegen && vite build",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"typecheck:watch": "tsc --noEmit --watch",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"check": "biome check .",
"check:fix": "biome check --write .",
"website:dev": "cd website && bun run dev",
"website:build": "cd website && bun run build",
"website:preview": "cd website && bun run preview",
"bump": "bun run scripts/bump-version.ts"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@crxjs/vite-plugin": "^2.3.0",
"@pandacss/dev": "^1.7.2",
"@types/bun": "latest",
"@types/chrome": "^0.1.32",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vite-plugin-solid": "^2.11.10",
"vitest": "^4.0.16"
},
"dependencies": {
"@tanstack/solid-virtual": "^3.13.13",
"fuse.js": "^7.1.0",
"solid-icons": "^1.1.0",
"solid-js": "^1.9.10",
"wanakana": "^5.3.1"
}
}