-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 999 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
{
"name": "gpt-text-to-diagram",
"version": "1.0.2",
"description": "Using OpenAI GPT models, from a description of a software system or other entity diagram, generate a design diagram image or PDF.",
"main": "dist/src/main.js",
"bin": "dist/src/main.js",
"author": "Jake Cyr",
"license": "ISC",
"scripts": {
"start": "node dist/src/main.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"build": "tsc"
},
"keywords": [
"chatgpt",
"machine-learning",
"openai",
"gpt",
"design diagram",
"software"
],
"dependencies": {
"axios": "^1.4.0",
"commander": "^10.0.1",
"dotenv": "^16.1.4",
"markdown-mermaid-exporter": "^1.0.1",
"openai": "^3.2.1"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@types/jest": "^29.5.2",
"jest": "^29.5.0",
"typescript": "^5.1.3"
}
}