-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
70 lines (70 loc) · 2.26 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
64
65
66
67
68
69
70
{
"name": "code-narrator",
"version": "1.0.17",
"description": "Uses OpenAI to generate documentation for your source code, as well create HowTo, FAQ, Tutorial and other custom pages. Code-narrator documents it self and should be a validation of the documentation working, similar to a compiler compiling it self. Configuration code-narrator.config.js file is created on first run and sets the configuration for your project, such as project path, doc, documentation type and more. The package can be install using 'npm i code-narrator -D'. code-narrator is code language, linguistic & framework neutral. It keeps your documentation always up to date",
"keywords": [
"documentation",
"openai",
"autodoc",
"gpt4"
],
"homepage": "https://github.com/ingig/code-narrator",
"bugs": {
"url": "https://github.com/ingig/code-narrator/issues"
},
"repository": {
"url": "https://github.com/ingig/code-narrator"
},
"bin": {
"code-narrator-cli": "./dist/src/cli.js"
},
"readme": "./docs/ReadMe.md",
"scripts": {
"compile": "tsc",
"build": "npm run compile && gulp",
"start": "npx ts-node .\\src\\cli.ts"
},
"author": "Ingi Gauti Ragnarsson @ingig",
"license": "ISC",
"main": "./dist/src/App.js",
"types": "./dist/App.d.ts",
"files": [
"./dist"
],
"dependencies": {
"@types/jsonpath": "^0.2.0",
"@types/multimatch": "^4.0.0",
"asynckit": "^0.4.0",
"axios": "^0.26.1",
"combined-stream": "^1.0.8",
"delayed-stream": "^1.0.0",
"dotenv": "^16.0.3",
"extract-json-from-string": "^1.0.1",
"fast-glob": "^3.2.12",
"follow-redirects": "^1.15.2",
"form-data": "^4.0.0",
"fs-extra": "^11.1.1",
"gulp-sourcemaps": "^3.0.0",
"ignore": "^5.2.4",
"jsonpath": "^1.1.1",
"liquidjs": "^10.7.0",
"mime-db": "^1.52.0",
"mime-types": "^2.1.35",
"multimatch": "^6.0.0",
"openai": "^3.1.0",
"yargs": "^17.7.1"
},
"devDependencies": {
"@babel/preset-typescript": "^7.21.0",
"@jest/globals": "^29.5.0",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.19",
"gulp": "^4.0.2",
"gulp-copy": "^4.0.1",
"gulp-typescript": "^6.0.0-alpha.1",
"jest": "^29.4.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}