-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.71 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.71 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
63
64
65
66
67
68
69
70
71
{
"name": "pr-splitter",
"type": "module",
"version": "0.0.3",
"description": "CLI that splits one large pull request into many small pull requests",
"main": "dist/index.js",
"bin": {
"pr-splitter": "dist/index.js"
},
"scripts": {
"build": "tsdown",
"dev": "tsx src/index.tsx",
"start": "node dist/index.js",
"test": "vitest",
"test:watch": "vitest --watch",
"benchmark": "tsx benchmarks/run.ts"
},
"keywords": [
"cli",
"git",
"pull-request",
"github"
],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.19.0",
"dependencies": {
"@ai-sdk/anthropic": "^1.2.12",
"@ai-sdk/google": "^1.2.22",
"@ai-sdk/openai": "^1.3.23",
"@inkjs/ui": "^2.0.0",
"@inquirer/prompts": "^7.7.1",
"@octokit/rest": "^22.0.0",
"@octokit/types": "^14.1.0",
"@reduxjs/toolkit": "^2.9.0",
"@types/react": "^19.1.13",
"@types/uuid": "^10.0.0",
"@xenova/transformers": "^2.17.2",
"ai": "^4.3.17",
"chalk": "4.1.2",
"commander": "^12.1.0",
"dotenv": "^17.2.3",
"fs-extra": "^11.2.0",
"ink": "^6.3.1",
"keytar": "^7.9.0",
"lodash": "^4.17.21",
"octokit": "^5.0.3",
"ora": "5.4.1",
"ramda": "^0.29.0",
"react": "^19.1.1",
"react-redux": "^9.2.0",
"redux-thunk": "^3.1.0",
"reselect": "^5.1.1",
"sharp": "^0.34.3",
"simple-git": "^3.25.0",
"tmp": "^0.2.3",
"uuid": "^11.1.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.17.0",
"@types/node": "^20.12.7",
"@types/ramda": "^0.29.0",
"@types/tmp": "^0.2.6",
"tsdown": "^0.15.10",
"tsx": "^4.7.2",
"typescript": "^5.4.5",
"vitest": "^3.2.4"
}
}