-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.93 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.93 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
{
"name": "knowledge-diff",
"version": "1.0.0",
"description": "GitHub Action that detects rationale drift between code changes and project documentation.",
"main": "dist/index.js",
"author": "Oarisur Rahman (@oarisur)",
"scripts": {
"build": "ncc build src/index.ts -o dist --source-map --license licenses.txt",
"build:watch": "tsc --watch",
"test": "jest --coverage",
"lint": "eslint \"src/**/*.ts\" \"__tests__/**/*.ts\"",
"typecheck": "tsc --noEmit",
"prepare": "npm run build"
},
"keywords": [
"github-action",
"documentation",
"drift",
"ai",
"pull-request",
"code-review"
],
"license": "MIT",
"dependencies": {
"@actions/core": "^3.0.1",
"@actions/github": "^9.1.1",
"@anthropic-ai/sdk": "^0.24.3",
"@google/genai": "^2.6.0",
"glob": "^13.0.6",
"minimatch": "^10.2.5",
"openai": "^4.52.7"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/jest": "^30.0.0",
"@types/minimatch": "^5.1.2",
"@types/node": "^25.9.1",
"@typescript-eslint/eslint-plugin": "^8.60.0",
"@typescript-eslint/parser": "^8.60.0",
"@vercel/ncc": "^0.38.4",
"eslint": "^10.4.0",
"jest": "^30.4.2",
"ts-jest": "^29.4.11",
"typescript": "^5.5.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.test.ts"
],
"moduleNameMapper": {
"^@actions/core$": "<rootDir>/node_modules/@actions/core/lib/core.js",
"^@actions/github$": "<rootDir>/node_modules/@actions/github/lib/github.js",
"^@actions/github/lib/utils$": "<rootDir>/node_modules/@actions/github/lib/utils.js"
},
"collectCoverageFrom": [
"src/**/*.ts",
"!src/index.ts"
],
"coverageThreshold": {
"global": {
"statements": 90,
"branches": 75,
"functions": 90,
"lines": 90
}
}
},
"overrides": {
"undici": "^7.0.0"
}
}