-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.24 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
{
"name": "gptdoc",
"version": "1.0.9",
"license": "MIT",
"author": "Matias Vazquez-Levi",
"description": "Generate documentation comments with the help of OpenAI's models",
"keywords": [
"gpt",
"openai",
"documentation",
"jsdoc",
"typedoc",
"yui-doc",
"comments",
"gpt-3",
"gpt-3.5",
"gpt-4"
],
"homepage": "https://github.com/matiasvlevi/gptdoc#readme",
"repository": {
"type": "git",
"url": "https://github.com/matiasvlevi/gptdoc"
},
"bugs": {
"url": "https://github.com/matiasvlevi/gptdoc/issues",
"email": "matiasvlevi@gmail.com"
},
"main": "./gptdoc.js",
"bin": {
"gptdoc": "./gptdoc.js"
},
"engineStrict": true,
"engines": {
"node": "^18.0.0"
},
"devDependencies": {
"@types/node": "^18.14.3",
"openai": "^3.2.1",
"typedoc": "^0.23.26",
"typedoc-theme-hierarchy": "^3.0.2",
"typescript": "^4.9.5"
},
"scripts": {
"build": "node node_modules/typescript/bin/tsc -p ./src",
"docself": "node ./ -c .gptdoc ./src/ ./gpt",
"doc": "node node_modules/typedoc/bin/typedoc ./src --out ./docs/typedoc --entryPoints ./src/index.ts --theme hierarchy ",
"test": "node ./gptdoc.js ./example/example.js ./example/gpt.example.js"
}
}