-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.5 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.5 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "code-review-app",
"version": "1.0.0",
"description": "Desktop Application for Single Repository Code Review",
"main": "dist/main/index.js",
"scripts": {
"postinstall": "node scripts/fix-electron-signature.mjs",
"dev": "npm run build:main && npm run build:preload && vite",
"start": "npm run build && electron .",
"build:main": "esbuild src/main/index.ts --bundle --platform=node --target=node20 --outfile=dist/main/index.js --external:electron",
"build:preload": "esbuild src/preload/index.ts --bundle --platform=node --target=node20 --outfile=dist/preload/index.js --external:electron",
"build:renderer": "vite build",
"build": "npm run build:main && npm run build:preload && npm run build:renderer",
"pack": "npm run build && electron-builder --dir",
"dist": "npm run build && electron-builder",
"typecheck": "tsc --noEmit",
"test": "jest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"build": {
"appId": "com.agentic.codereview",
"productName": "Agentic Code Review",
"files": [
"dist/**/*",
"package.json",
"src/prompts/**/*"
],
"extraResources": [
"src/prompts/**/*"
],
"directories": {
"output": "release"
},
"toolsets": {
"appimage": "1.0.3"
},
"linux": {
"category": "Development",
"executableName": "agentic-code-review",
"target": [
"AppImage",
"dir"
]
}
},
"dependencies": {
"dompurify": "^3.2.4",
"lucide-react": "^0.479.0",
"marked": "^15.0.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"reflect-metadata": "^0.2.2",
"tsyringe": "^4.10.0"
},
"devDependencies": {
"@types/dompurify": "^3.0.5",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.19",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"@vitejs/plugin-react": "^4.3.4",
"electron": "^31.7.7",
"electron-builder": "^26.15.7",
"esbuild": "^0.25.0",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"jest": "^30.4.2",
"prettier": "^3.5.1",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0",
"vite": "^5.4.14"
}
}