-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.34 KB
/
package.json
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
{
"name": "quick-gpt",
"version": "1.0.0",
"displayName": "Quick GPT Web Extension",
"author": "Muhammad Khizar Hayat",
"description": "A GenerativeAI web extension to simplify your tasks",
"scripts": {
"build": "vite build",
"watch": "vite build --watch --mode development --minify false",
"dev": "vite",
"serve:firefox": "web-ext run --start-url \"about:debugging#/runtime/this-firefox\" --source-dir ./dist/",
"serve:chrome": "web-ext run -t chromium --start-url \"https://example.com\" --source-dir ./dist/"
},
"license": "MIT",
"devDependencies": {
"@samrum/vite-plugin-web-extension": "^5.0.0",
"@types/chrome": "^0.0.228",
"@types/webextension-polyfill": "^0.10.0",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.15",
"postcss": "^8.4.29",
"tailwindcss": "^3.3.3",
"vite": "~4.3.3",
"web-ext": "^7.6.2",
"webextension-polyfill": "^0.10.0"
},
"dependencies": {
"@floating-ui/react": "^0.25.4",
"axios": "^1.5.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"common-tags": "^1.8.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.5",
"react-markdown": "^8.0.7",
"react-syntax-highlighter": "^15.5.0",
"remark-gfm": "^3.0.1",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.7"
}
}