-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 906 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": "prompt-engineering",
"version": "1.0.0",
"description": "Node.js port of the Python examples in the DeepLearning.AI course ChatGPT Prompt Engineering for Developers",
"main": "index.js",
"directories": {
"example": "examples"
},
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeromecovington/prompt-engineering.git"
},
"keywords": [
"Node.js",
"DeepLearning.AI",
"ChatGPT",
"Prompt",
"Engineering"
],
"author": "Jerome Covington",
"license": "ISC",
"bugs": {
"url": "https://github.com/jeromecovington/prompt-engineering/issues"
},
"homepage": "https://github.com/jeromecovington/prompt-engineering#readme",
"dependencies": {
"dotenv": "^16.3.1",
"openai": "^4.24.1"
},
"devDependencies": {
"standard": "^17.1.0"
}
}