-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.09 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.09 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
{
"name": "code2prompt",
"version": "1.1.4",
"description": "NodeJS Class for transforming a given codebase directory into an LLM prompt",
"main": "index.js",
"scripts": {
"test": "DEBUG=zod-gpt:* node test.js",
"test2": "node test2.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/puntorigen/code2prompt.git"
},
"keywords": [
"code2prompt",
"codeparser",
"llm",
"prompt engineering"
],
"author": "Pablo Schaffner",
"license": "MIT",
"bugs": {
"url": "https://github.com/puntorigen/code2prompt/issues"
},
"homepage": "https://github.com/puntorigen/code2prompt#readme",
"dependencies": {
"@concepto/console": "^1.2.68",
"code-blocks": "^1.1.0",
"dotenv": "^16.4.7",
"fs-extra": "^11.2.0",
"glob": "^10.3.12",
"handlebars": "^4.7.8",
"isbinaryfile": "^5.0.4",
"llm-api": "https://github.com/puntorigen/llm-api",
"node-fetch": "^3.3.2",
"prompts": "^2.4.2",
"pythonia": "^1.2.1",
"safe-eval": "^0.4.1",
"tiktoken": "^1.0.17",
"zod": "^3.24.1",
"zod-gpt": "^0.16.0"
}
}