-
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) · 757 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 757 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
{
"type": "module",
"name": "gitai",
"version": "1.0.0",
"main": "dist/index.js",
"dependencies": {
"active-win": "^9.0.0",
"chatgpt": "^5.2.5",
"clipboardy": "^4.0.0",
"dotenv": "^17.2.1",
"gpt-3-encoder": "^1.1.4",
"groq-sdk": "^0.30.0",
"js-tiktoken": "^1.0.20",
"mac-windows": "^1.0.0",
"openai": "^5.12.1",
"play-sound": "^1.1.6"
},
"devDependencies": {
"@types/node": "^24.2.0",
"ts-node": "^10.9.2",
"tsx": "^4.20.3",
"typescript": "^5.9.2"
},
"scripts": {
"build": "tsc",
"dev": "tsx -r dotenv/config src/index.ts",
"test": "tsx --test test/*.test.ts",
"watch": "tsc -w",
"start": "node dist/index.js"
},
"bin": {
"gitai": "./dist/index.js"
}
}