-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.42 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
{
"name": "auto-docs",
"version": "1.0.0",
"description": "AI-powered documentation generator for JavaScript/TypeScript projects",
"main": "src/index.js",
"type": "module",
"bin": {
"auto-docs": "./bin/generate-docs.js"
},
"scripts": {
"start": "node src/index.js",
"test": "jest",
"lint": "eslint src/",
"format": "prettier --write \"src/**/*.js\"",
"prepare": "husky install"
},
"keywords": [
"documentation",
"generator",
"ai",
"javascript",
"typescript",
"openai",
"gpt",
"docs",
"auto-documentation",
"documentation-generator"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/yourusername/auto-docs.git"
},
"bugs": {
"url": "https://github.com/yourusername/auto-docs/issues"
},
"homepage": "https://github.com/yourusername/auto-docs#readme",
"dependencies": {
"esprima": "^4.0.1",
"openai": "^4.0.0",
"commander": "^11.0.0",
"chalk": "^5.3.0",
"dotenv": "^16.3.1",
"fs-extra": "^11.1.1",
"glob": "^10.3.3",
"marked": "^9.0.0",
"jsdoc-to-markdown": "^8.0.0"
},
"devDependencies": {
"jest": "^29.6.4",
"eslint": "^8.48.0",
"prettier": "^3.0.3",
"husky": "^8.0.3",
"lint-staged": "^14.0.1"
},
"engines": {
"node": ">=14.0.0"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
}
}