-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.14 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.14 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
{
"name": "pullprompt",
"version": "1.4.0",
"main": "index.js",
"scripts": {
"build": "npx ncc build src/index.js",
"prepare": "husky install",
"format": "prettier --write '**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pradumnasaraf/pullprompt.git"
},
"author": "Pradumnasaraf",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Pradumnasaraf/pullprompt/issues"
},
"homepage": "https://github.com/Pradumnasaraf/pullprompt#readme",
"description": "PullPrompt is a GitHub Action that comments on a Pull Request with a message generated from a user-given prompt. Under the hood, it uses Google’s Gemini API to generate the text.",
"keywords": [
"github",
"action",
"google",
"gemini",
"pullrequest",
"comment"
],
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@google/generative-ai": "^0.21.0"
},
"type": "module",
"devDependencies": {
"@eslint/js": "^9.19.0",
"@vercel/ncc": "^0.38.3",
"globals": "^15.14.0",
"husky": "^8.0.0",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2"
}
}