-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.39 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "promptform",
"version": "1.0.2",
"description": "Run files through the OpenAI completions API in bulk",
"main": "src/index.js",
"bin": {
"promptform": "src/index.js"
},
"scripts": {
"test": "jest --coverage --silent",
"test:watch": "jest --coverage --silent --watch",
"lint": "standard",
"fmt": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jasonstitt/promptform.git"
},
"keywords": [
"openai",
"gpt",
"gpt3",
"gpt3.5",
"gpt4",
"ai",
"generative",
"codegen",
"text",
"utility"
],
"author": "Jason Stitt",
"license": "MIT",
"bugs": {
"url": "https://github.com/jasonstitt/promptform/issues"
},
"homepage": "https://github.com/jasonstitt/promptform#readme",
"dependencies": {
"@types/bluebird": "^3.5.38",
"bluebird": "^3.7.2",
"commander": "^10.0.0",
"minimatch": "^7.4.3",
"mkdirp": "^2.1.6",
"openai": "^3.2.1",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@types/jest": "^29.5.0",
"babel-jest": "^29.5.0",
"jest": "^29.5.0",
"jest-mock": "^29.5.0",
"mock-fs": "^5.2.0",
"standard": "^17.0.0"
},
"standard": {
"env": [
"jest"
]
}
}