-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.05 KB
/
package.json
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
{
"name": "my-ts-project",
"version": "1.0.0",
"description": "",
"main": "dist/bundle.js",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"start": "node dist/index.js",
"dev": "tsc -p tsconfig.build.json && node dist/index.js",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
},
"type": "module",
"author": "",
"license": "ISC",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/jest": "^28.1.8",
"@types/node-fetch": "^2.6.11",
"jest": "^28.1.3",
"mock-fs": "^5.2.0",
"ts-jest": "^28.0.8",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5"
},
"dependencies": {
"@google/generative-ai": "^0.12.0",
"@inquirer/editor": "^2.1.9",
"ignore": "^5.3.1",
"inquirer": "^8.2.6",
"inquirer-autocomplete-standalone": "^0.8.1",
"inquirer-press-to-continue": "^1.2.0",
"node-fetch": "^2.6.6",
"openai": "^4.47.3",
"parse-diff": "^0.11.1",
"parse-gitignore": "^2.0.0"
}
}