-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·55 lines (55 loc) · 1.74 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
{
"name": "chat-with-web",
"displayName": "Web Assistant",
"type": "module",
"version": "1.0.0",
"packageManager": "pnpm@9.13.2+sha512.88c9c3864450350e65a33587ab801acf946d7c814ed1134da4a924f6df5a2120fd36b46aab68f7cd1d413149112d53c7db3a4136624cfd00ff1846a0c6cef48a",
"description": "Chat with your current webpage using AI",
"license": "MIT",
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^6.4.0",
"@mui/material": "^6.4.0",
"openai": "^4.77.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.1",
"remark-gfm": "^4.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.14.0",
"@crxjs/vite-plugin": "2.0.0-beta.23",
"@emotion/babel-plugin": "^11.13.5",
"@eslint-react/eslint-plugin": "^1.23.2",
"@eslint/js": "^9.18.0",
"@tailwindcss/typography": "^0.5.15",
"@types/chrome": "^0.0.241",
"@types/node": "^22.10.5",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.14",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.18",
"globals": "^15.14.0",
"postcss": "^8.4.26",
"prettier": "^3.4.2",
"tailwindcss": "^3.3.2",
"typescript": "^4.9.5",
"typescript-eslint": "^8.20.0",
"vite": "^6.0.7"
}
}