-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.21 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
{
"name": "mktute",
"version": "1.1.5",
"description": "CLI tool to generate a markdown formatted tutorial based on recent diffs.",
"main": "dist/mktute.cjs",
"type": "commonjs",
"repository": {
"type": "git",
"url": "https://github.com/josephrmartinez/mktute"
},
"homepage": "https://github.com/josephrmartinez/mktute#readme",
"bin": {
"mktute": "./dist/mktute.cjs"
},
"scripts": {
"build": "npx esbuild bin/mktute.ts --bundle --platform=node --target=node10.4 --outfile=dist/mktute.cjs --minify",
"build:nix": "npx esbuild bin/mktute.ts --bundle --platform=node --target=node10.4 --outfile=$out/bin/mktute.cjs",
"start": "node dist/mktute.cjs",
"run": "npm run build && npm run start"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.22.0",
"@types/argparse": "^2.0.16",
"@types/inquirer": "^9.0.7",
"argparse": "^2.0.1",
"chalk": "^5.3.0",
"dotenv": "^16.4.5",
"inquirer": "^9.2.23",
"ollama": "^0.5.2",
"openai": "^4.47.3",
"simple-git": "^3.24.0"
},
"devDependencies": {
"esbuild": "^0.21.5",
"npm-check": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}