-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.26 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.26 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
{
"name": "browser-extension",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build:chrome:general": "vite build --config vite.config.chrome.ts",
"build:chrome:content": "vite build --config vite.config.chrome.content.ts",
"build:chrome": "npm run build:chrome:general && npm run build:chrome:content",
"build:firefox:general": "vite build --config vite.config.firefox.ts",
"build:firefox:content": "vite build --config vite.config.firefox.content.ts",
"build:firefox": "npm run build:firefox:general && npm run build:firefox:content",
"build:all": "npm-run-all --parallel build:chrome build:firefox",
"preview": "vite preview",
"watch": "vite build --watch"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"typescript": "^5.5.3",
"vite": "^5.4.1"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.637.0",
"@aws-sdk/s3-request-presigner": "^3.651.1",
"@tanstack/react-query-devtools": "^5.53.1",
"@types/webextension-polyfill": "^0.12.1",
"@vitejs/plugin-react": "^4.3.1",
"flexsearch": "^0.7.43",
"idb": "^8.0.0",
"localforage": "^1.10.0",
"nanoid": "^5.0.7",
"vite-plugin-static-copy": "^1.0.6",
"webextension-polyfill": "^0.12.0"
}
}