-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.51 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.51 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "agentsurfer",
"version": "0.1.0",
"description": "AI-powered browser agent: control any page with natural language across 6 LLM providers.",
"private": true,
"type": "module",
"scripts": {
"dev": "wxt",
"dev:firefox": "wxt -b firefox",
"build": "wxt build",
"build:firefox": "wxt build -b firefox",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox",
"compile": "tsc --noEmit",
"icons": "bun run scripts/generate-icons.ts",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"e2e": "playwright test",
"e2e:headed": "playwright test --headed",
"e2e:debug": "playwright test --debug",
"e2e:live": "playwright test --grep @live",
"e2e:real": "playwright test e2e/specs/04-real-google-search.spec.ts --headed",
"e2e:serve": "bun run e2e/fixtures/serve.ts",
"vendor": "bun run scripts/vendor-pixi.ts",
"test:minimax": "bun run scripts/test-minimax.ts",
"test:mimo": "bun run scripts/test-mimo.ts",
"test:diff": "bun run scripts/test-screenshot-diff.ts",
"postinstall": "wxt prepare"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.0",
"@ai-sdk/openai": "^3.0.0",
"@ai-sdk/openai-compatible": "^1.0.0",
"@anthropic-ai/sdk": "^0.40.0",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-scroll-area": "^1.2.2",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-separator": "^1.1.1",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-switch": "^1.3.0",
"@radix-ui/react-tabs": "^1.1.2",
"@radix-ui/react-toast": "^1.2.4",
"@radix-ui/react-tooltip": "^1.1.6",
"ai": "^6.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dexie": "^4.0.10",
"dexie-react-hooks": "^1.1.7",
"lucide-react": "^0.469.0",
"pngjs": "^7.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sonner": "^1.7.1",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^4.1.8",
"zustand": "^5.0.2"
},
"devDependencies": {
"@playwright/test": "^1.49.1",
"@types/chrome": "^0.1.43",
"@types/node": "^22.10.5",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@wxt-dev/module-react": "^1.1.0",
"autoprefixer": "^10.4.20",
"pixi.js": "^8.6.6",
"postcss": "^8.4.49",
"sharp": "^0.33.5",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"wxt": "^0.20.0"
}
}