-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 965 Bytes
/
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": "llm-codegen",
"version": "0.1.0",
"description": "A CLI tool using LLMs + code library docs to generate higher-quality code.",
"main": "./dist/main.ts",
"type": "module",
"bin": {
"lg": "./dist/main.js"
},
"scripts": {
"start": "tsx src/main.ts",
"bundle": "tsup",
"upload": "pnpm bundle && npm publish",
"test": "vitest"
},
"keywords": [],
"author": "Mike Cavaliere",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.10.0",
"@vitest/coverage-v8": "^1.6.0",
"tsup": "^8.1.0",
"tsx": "^4.5.0",
"typescript": "^5.3.2",
"vitest": "^1.6.0"
},
"dependencies": {
"@inquirer/prompts": "^3.3.0",
"@mdx-js/node-loader": "^3.0.1",
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"dotenv-cli": "^7.3.0",
"enquirer": "^2.4.1",
"fast-glob": "^3.3.2",
"openai": "^4.20.0",
"ora": "^8.0.1",
"to-vfile": "^8.0.0",
"vfile-matter": "^5.0.0"
}
}