-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.15 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
{
"name": "browser-agent-extension",
"version": "0.2.1",
"private": true,
"type": "module",
"scripts": {
"dev": "wxt",
"dev:chrome": "wxt -b chrome",
"dev:firefox": "wxt -b firefox --mv3",
"build": "wxt build",
"build:chrome": "wxt build -b chrome",
"build:firefox": "wxt build -b firefox --mv3",
"zip": "wxt zip",
"zip:chrome": "wxt zip -b chrome",
"zip:firefox": "wxt zip -b firefox --mv3",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write 'src/**/*.{ts,tsx,css,json}'",
"test": "vitest",
"test:run": "vitest run",
"typecheck": "tsc --noEmit",
"build:all": "bash scripts/build-all.sh",
"verify:manifest": "bash scripts/verify-manifest.sh",
"check:size": "bash scripts/check-size.sh",
"pre-release": "npm run test:run && npm run build:all && npm run check:size && npm run verify:manifest"
},
"dependencies": {
"@ai-sdk/anthropic": "^4.0.34",
"@ai-sdk/cohere": "^4.0.23",
"@ai-sdk/google": "^4.0.37",
"@ai-sdk/openai": "^4.0.34",
"@ai-sdk/openai-compatible": "^3.0.25",
"@ai-sdk/react": "^4.0.59",
"@mozilla/readability": "^0.5.0",
"ai": "^7.0.56",
"idb": "^8.0.0",
"marked": "^18.0.5",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"turndown": "^7.2.4",
"turndown-plugin-gfm": "^1.0.2"
},
"devDependencies": {
"@playwright/test": "^1.61.0",
"@tailwindcss/vite": "^4.0.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/chrome": "^0.0.280",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^2.1.9",
"@wxt-dev/module-react": "^1.2.0",
"eslint": "^9.0.0",
"eslint-plugin-react-hooks": "^5.0.0",
"fake-indexeddb": "^6.2.5",
"jsdom": "^29.1.1",
"prettier": "^3.3.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.5.0",
"vitest": "^2.0.0",
"web-ext": "^10.1.0",
"wxt": "^0.21.0"
}
}