This repository was archived by the owner on Feb 10, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.jsonc
More file actions
38 lines (38 loc) · 1.23 KB
/
deno.jsonc
File metadata and controls
38 lines (38 loc) · 1.23 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
{
"tasks": {
"dev": "deno run --watch --allow-net --allow-read --allow-write --allow-env --allow-run=\"git,vim,gh\" src/main.ts",
"start": "deno run --allow-net --allow-read --allow-write --allow-env --allow-run=\"git,vim,gh\" src/main.ts",
"build": "deno run --allow-read --allow-write --allow-run=\"git,vim,gh\" scripts/build.ts",
"install": "deno run --allow-env --allow-run=\"git,vim,gh,deno\" --allow-read --allow-write scripts/install.ts",
"update": "git pull && deno task install"
},
"name": "auto-commit",
"version": "1.0.0",
"exports": "./src/main.ts",
"description": "Automatically generate git commit messages.",
"author": "Sid Edwards",
"license": "MIT",
"imports": {
"@langchain/core/": "npm:@langchain/core/",
"@langchain/anthropic": "npm:@langchain/anthropic",
"@langchain/openai": "npm:@langchain/openai",
"@langchain/ollama": "npm:@langchain/ollama"
},
"compilerOptions": {
"lib": ["deno.window"],
"strict": false,
"useUnknownInCatchVariables": false,
"noImplicitAny": false
},
"fmt": {
"files": {
"include": ["src/"]
},
"options": {
"useTabs": false,
"lineWidth": 100,
"indentWidth": 2,
"singleQuote": false
}
}
}