-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 934 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 934 Bytes
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
{
"name": "browser-code-extension",
"version": "0.1.2",
"private": true,
"type": "module",
"scripts": {
"dev": "wxt",
"dev:firefox": "wxt -b firefox --mv3",
"build": "wxt build -b chrome && wxt build -b firefox --mv3",
"build:chrome": "wxt build -b chrome",
"build:firefox": "wxt build -b firefox --mv3",
"zip": "wxt zip -b chrome && wxt zip -b firefox --mv3",
"zip:chrome": "wxt zip -b chrome",
"zip:firefox": "wxt zip -b firefox --mv3",
"typecheck": "tsc --noEmit",
"test:e2e": "bun run build:chrome && bunx playwright test"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@wxt-dev/module-react": "^1.1.0",
"typescript": "^5.7.0",
"wxt": "^0.20.0"
}
}