-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.17 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": "github-code-review",
"description": "A Chrome extension for getting AI assistance for pull request reviews in Github",
"version": "0.0.1",
"author": "Paulo Silva",
"type": "module",
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "https://github.com/luniai/github-code-review.git"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build && vite build --config vite.config.content_script.ts && vite build --config vite.config.background.ts",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {
"dexie": "^4.0.8",
"dexie-react-hooks": "^1.1.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-query": "^3.39.3"
},
"devDependencies": {
"@types/chrome": "^0.0.269",
"@eslint/js": "^9.8.0",
"@types/node": "^22.2.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^9.8.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.9",
"globals": "^15.9.0",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.0",
"vite": "^5.4.0"
}
}