-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.33 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.33 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
{
"name": "review-insights",
"version": "2.0.0",
"description": "GitHub Action to analyze code review patterns, detect workload imbalances, track AI adoption impact, and visualize team dynamics with charts.",
"main": "dist/index.mjs",
"exports": {
".": "./dist/index.mjs"
},
"files": [
"dist",
"action.yml",
"docs",
"README.md",
"LICENSE",
"PRIVACY.md",
"SECURITY.md",
"TERMS.md"
],
"scripts": {
"typecheck": "tsc -b",
"build": "tsc -b && rolldown -c rolldown.config.ts",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"check": "biome check . --error-on-warnings",
"check:fix": "biome check . --error-on-warnings --write",
"all": "pnpm run check && pnpm test && pnpm run build"
},
"keywords": [
"github-action",
"review",
"analytics",
"visualization"
],
"license": "MIT",
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@10.33.0",
"dependencies": {
"@actions/artifact": "^6.2.1",
"@actions/core": "^3.0.0",
"@actions/github": "^9.1.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@types/node": "^24.12.2",
"@vitest/coverage-v8": "^4.1.4",
"lefthook": "^2.1.6",
"rolldown": "1.0.0-rc.11",
"typescript": "^6.0.3",
"vitest": "^4.1.4"
}
}