-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.27 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
45
46
47
48
49
50
51
{
"name": "groupthink",
"version": "0.1.0",
"description": "LLM-powered tab grouping for AI-first browsers",
"type": "module",
"scripts": {
"dev": "vite",
"build": "node scripts/inject-env.js && tsc && vite build",
"build:prod": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"test:coverage": "vitest --coverage",
"type-check": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write ."
},
"keywords": [
"browser-extension",
"ai",
"tab-management",
"chrome-extension"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=20.18.1",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@8.15.0",
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"d3-hierarchy": "^3.1.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"zod": "^3.23.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"@crxjs/vite-plugin": "^2.0.0-beta.25",
"@types/chrome": "^0.0.287",
"@types/d3-hierarchy": "^3.1.7",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.0",
"happy-dom": "^15.0.0",
"typescript": "^5.5.0",
"vite": "^5.3.0",
"vitest": "^2.0.0"
}
}