-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.13 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.13 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
{
"name": "spit-the-diff",
"version": "1.1.2",
"description": "Where your diffs drop bars. A GitHub Action that generates creative PR summaries using AI.",
"main": "dist/index.js",
"scripts": {
"build": "tsc --noEmit && ncc build src/index.ts -o dist --source-map --license licenses.txt",
"build:watch": "tsc --watch",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"lint": "eslint src",
"lint:md": "markdownlint '**/*.md' --ignore node_modules",
"lint:all": "npm run lint && npm run lint:md"
},
"keywords": [
"github-action",
"pull-request",
"ai",
"rap",
"openai",
"code-review",
"developer-tools"
],
"author": "ssfinney",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"openai": "^4.52.7"
},
"devDependencies": {
"@types/node": "^20.14.0",
"@vercel/ncc": "^0.38.1",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.3",
"markdownlint-cli": "^0.48.0",
"typescript": "^5.5.0",
"typescript-eslint": "^8.57.0",
"vitest": "^4.0.18"
}
}