-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.13 KB
/
package.json
File metadata and controls
55 lines (55 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
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "janusdoc",
"version": "0.7.0",
"description": "AI-powered documentation update suggester for PRs",
"keywords": [
"ai",
"cli",
"documentation",
"github",
"pr"
],
"license": "MIT",
"author": "",
"bin": {
"janusdoc": "./build/index.js"
},
"files": [
"assets",
"build",
"LICENSE",
"README.md"
],
"type": "module",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "vitest",
"test:run": "vitest run",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format": "oxfmt",
"format:check": "oxfmt --check"
},
"dependencies": {
"@ai-sdk/openai": "^0.0.70",
"@clack/prompts": "^0.8.2",
"@octokit/rest": "^21.0.0",
"ai": "^3.4.0",
"simple-git": "^3.27.0",
"yargs": "^17.7.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/yargs": "^17.0.33",
"oxfmt": "^0.20.0",
"oxlint": "^1.35.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^2.1.0"
}
}