-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 925 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 925 Bytes
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
{
"name": "codoc",
"version": "0.0.1",
"description": "Copilot-enabled action for suggesting documentation changes on a PR",
"scripts": {
"rollup": "rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TylerKoon/codoc.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"bugs": {
"url": "https://github.com/TylerKoon/codoc/issues"
},
"homepage": "https://github.com/TylerKoon/codoc#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1",
"openai": "^5.11.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^24.10.0",
"rollup": "^4.53.1",
"tslib": "^2.8.1",
"typescript": "^5.9.3"
}
}