-
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.39 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.39 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": "browser-interface",
"private": true,
"version": "1.2.10",
"type": "module",
"scripts": {
"dev": "vite",
"build:internal": "npm run lint && npm run tsc && vite build",
"build:ci": "vite build",
"build": "./scripts/build.sh && npm run build:internal && ./scripts/rename-helpers.sh",
"preview": "vite preview",
"lint": "eslint src && eslint service-worker",
"tsc": "tsc --noEmit"
},
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/compat": "^1.2.7",
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.22.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/chrome": "^0.0.310",
"@types/node": "^22.13.10",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/wicg-file-system-access": "^2023.10.4",
"@typescript-eslint/eslint-plugin": "^8.27.0",
"@typescript-eslint/parser": "^8.17.0",
"@vitejs/plugin-react": "^4.3.4",
"babel-plugin-react-compiler": "^19.0.0-beta-3229e95-20250315",
"css-loader": "^7.1.2",
"eslint": "^9.22.0",
"eslint-plugin-react-compiler": "^19.0.0-beta-714736e-20250131",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.5",
"globals": "^16.0.0",
"typescript": "^5.3.3",
"vite": "^6.2.3",
"vite-plugin-chrome-extension": "^0.0.7"
}
}