-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.06 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.06 KB
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
71
72
73
74
{
"name": "docai",
"version": "2.3.0",
"description": "Generate documentation from your code with AI",
"main": "./dist/src/index.js",
"type": "module",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"keywords": [
"automated documentation",
"Documentation",
"Artificial intelligence",
"AI",
"Markdown",
"JavaScript",
"TypeScript"
],
"scripts": {
"check": "tsc --noEmit",
"build": "pnpm clean && tsc -p ./tsconfig.build.json",
"dev": "tsc --watch",
"add-comment": "node add-comment",
"generate-doc": "node generate-doc",
"lint": "npx eslint . --ext .js,.jsx,.ts --config .eslintrc.cjs",
"test:unit": "jest unit",
"test:integration": "jest integration --runInBand",
"test": "pnpm test:unit && pnpm test:integration",
"test-watch:unit": "jest unit --watch",
"clean": "rimraf ./dist",
"prepare": "husky install"
},
"files": [
"dist"
],
"bin": "./dist/bin/docai.js",
"dependencies": {
"@babel/generator": "^7.24.5",
"@babel/parser": "^7.24.5",
"@babel/traverse": "^7.24.5",
"@langchain/community": "^0.0.55",
"@langchain/core": "^0.1.62",
"@langchain/groq": "^0.0.2",
"@langchain/mistralai": "^0.0.7",
"@langchain/openai": "^0.0.14",
"dependency-tree": "^10.0.9",
"js-yaml": "^4.1.0",
"langchain": "^0.1.36"
},
"devDependencies": {
"@babel/types": "^7.24.5",
"@types/babel__generator": "^7.6.8",
"@types/babel__traverse": "^7.20.5",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/minimist": "^1.2.5",
"@types/node": "^20.12.10",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"minimist": "^1.2.8",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "5.1.6"
}
}