-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·58 lines (58 loc) · 1.78 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "vite-web-extension",
"displayName": "PageLens",
"version": "0.2.1",
"description": "Bring ChatGPT, Claude, and more to every webpage.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JohnBra/web-extension.git"
},
"scripts": {
"build": "BUILD_MODE=opensource vite build",
"build:chrome": "BUILD_MODE=chromestore vite build",
"dev": "BUILD_MODE=opensource nodemon"
},
"type": "module",
"dependencies": {
"@clerk/chrome-extension": "^0.2.0",
"@clerk/clerk-js": "^4.32.7",
"@radix-ui/react-dropdown-menu": "^2.0.4",
"@radix-ui/react-tooltip": "^1.0.5",
"@sentry/react": "^7.45.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-feather": "^2.0.10",
"react-markdown": "^8.0.6",
"react-router-dom": "^6.10.0",
"react-spinners": "^0.13.8",
"react-syntax-highlighter": "^15.5.0",
"react-use-websocket": "^4.3.1",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@types/chrome": "^0.0.224",
"@types/node": "^18.11.18",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/react-syntax-highlighter": "^15.5.6",
"@types/webextension-polyfill": "^0.10.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"@vitejs/plugin-react-swc": "^3.0.1",
"autoprefixer": "^10.4.13",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.3.0",
"fs-extra": "^11.1.0",
"nodemon": "^2.0.20",
"postcss": "^8.4.21",
"tailwindcss": "^3.3.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"vite": "^4.0.4"
}
}