-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.32 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.32 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
{
"name": "thinkreview-browser-extension",
"version": "1.3.8",
"description": "AI-powered code reviews for GitLab & Azure DevOps. Zero setup. Powered by Google Gemini.",
"type": "module",
"scripts": {
"lint": "node scripts/lint-manifest.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"build": "node scripts/build.js",
"build:firefox": "node scripts/build.js firefox",
"build:firefox:zip": "node scripts/build-firefox-zip.js",
"validate": "node scripts/validate-manifest.js",
"ci": "npm run validate && npm run lint && npm run test"
},
"keywords": [
"browser-extension",
"chrome-extension",
"chromium",
"edge-extension",
"gitlab",
"azure-devops",
"merge-request",
"pull-request",
"code-review",
"ai",
"gemini",
"ai-code-review",
"code-quality",
"developer-tools",
"devops"
],
"author": "Thinkode Team",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/Thinkode/thinkreview-browser-extension.git"
},
"bugs": {
"url": "https://github.com/Thinkode/thinkreview-browser-extension/issues"
},
"homepage": "https://thinkreview.dev",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0"
}
}