forked from ferrislucas/promptr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 975 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": "@ifnotnowwhen/promptr",
"version": "1.1.6",
"main": "main.js",
"type": "module",
"license": "MIT",
"bin": {
"promptr": "bin/index.js"
},
"files": [
"templates/**",
"*.js"
],
"dependencies": {
"commander": "^10.0.0",
"gpt-3-encoder": "^1.1.4",
"liquidjs": "^10.7.0",
"openai": "^3.2.1",
"prompt-sync": "^4.2.0"
},
"description": "Promptr is a command-line interface (CLI) tool that writes the output of GPT3 model prompts to a specified file. Promptr can also accept additional arguments that specify one or more files to include in the prompt.",
"devDependencies": {
"mocha": "^10.2.0"
},
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ferrislucas/promptr.git"
},
"author": "Ferris Lucas",
"bugs": {
"url": "https://github.com/ferrislucas/promptr/issues"
},
"homepage": "https://github.com/ferrislucas/promptr#readme"
}