-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.49 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.49 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
{
"name": "diffr",
"version": "1.0.0",
"description": "AI-powered GitHub Release Generator",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/action/index.ts -o dist --source-map --license licenses.txt",
"typecheck": "tsc --noEmit",
"lint": "eslint src/ tests/",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepare": "husky"
},
"keywords": [
"github",
"release",
"release-notes",
"ai",
"llm",
"github-action"
],
"author": "David Adegoke",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dhaveed/diffr.git"
},
"homepage": "https://github.com/dhaveed/diffr#readme",
"bugs": "https://github.com/dhaveed/diffr/issues",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@anthropic-ai/sdk": "^0.39.0",
"@octokit/rest": "^21.1.0",
"openai": "^4.82.0",
"semver": "^7.7.1",
"yaml": "^2.7.0"
},
"devDependencies": {
"@types/node": "^20.17.0",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"@vercel/ncc": "^0.38.3",
"@vitest/coverage-v8": "^3.0.0",
"eslint": "^9.20.0",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
},
"engines": {
"node": ">=20.0.0"
}
}