forked from mazshakibaii/reppy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.51 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "reppy",
"version": "1.2.8",
"description": "Let reppy generate documentation for the functions in your codebase.",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"bin": {
"reppy": "./dist/index.cjs"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"start": "npx tsx ./src/index.ts",
"start:unsafe": "npx tsx ./src/index.ts --unsafe",
"build": "tsup && chmod +x dist/index.cjs && chmod +x dist/index.js",
"version:patch": "pnpm version patch",
"version:minor": "pnpm version minor",
"version:major": "pnpm version major"
},
"keywords": [
"documentation",
"generator",
"llm",
"ai",
"openai",
"reppy",
"typescript",
"javascript",
"python",
"rust",
"java",
"go"
],
"author": "Maziar Shakibaii",
"license": "MIT",
"dependencies": {
"@ai-sdk/amazon-bedrock": "^0.0.35",
"@ai-sdk/anthropic": "^0.0.55",
"@ai-sdk/azure": "^0.0.51",
"@ai-sdk/cohere": "^0.0.28",
"@ai-sdk/groq": "^0.0.3",
"@ai-sdk/mistral": "^0.0.46",
"@ai-sdk/openai": "^0.0.71",
"@inquirer/prompts": "^7.0.1",
"ai": "^3.4.33",
"cfonts": "^3.3.0",
"command-line-args": "^6.0.1",
"command-line-usage": "^7.0.1",
"dotenv": "^16.4.5",
"enquirer": "^2.4.1",
"glob": "^10.4.5",
"listr2": "^8.0.1",
"log-symbols": "^7.0.0",
"minimatch": "^10.0.1",
"picocolors": "^1.0.0",
"tree-sitter": "^0.20.1",
"tree-sitter-go": "^0.20.0",
"tree-sitter-java": "^0.20.2",
"tree-sitter-javascript": "^0.20.0",
"tree-sitter-python": "^0.20.4",
"tree-sitter-rust": "^0.20.4",
"tree-sitter-typescript": "^0.20.5",
"typescript": "^5.6.3",
"@typescript-eslint/parser": "^8.13.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"eslint": "^9.14.0",
"eslint-plugin-jsdoc": "^50.4.3"
},
"devDependencies": {
"@types/command-line-args": "^5.2.3",
"@types/command-line-usage": "^5.0.4",
"@types/minimatch": "^5.1.2",
"@types/node": "^22.8.7",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"tsx": "^4.7.1"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mazshakibaii/reppy.git"
},
"engines": {
"node": ">=16.0.0"
}
}