-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.45 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.45 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "codebot-ai",
"version": "2.9.0",
"description": "Safe, local-first autonomous coding agent. Policy-governed, audit-trailed, sandboxed. Works with any LLM — Ollama, Claude, GPT, Gemini, DeepSeek, Groq, Mistral, Grok.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"codebot": "bin/codebot"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"test": "node scripts/run-tests.js",
"lint": "eslint src/ && tsc --noEmit",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write 'src/**/*.ts' '*.json' '*.md'",
"format:check": "prettier --check 'src/**/*.ts' '*.json' '*.md'",
"typecheck": "tsc --noEmit",
"clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
"postbuild": "node -e \"require('fs').cpSync('src/dashboard/static','dist/dashboard/static',{recursive:true})\"",
"prepublishOnly": "npm run build",
"pretest": "npm run build"
},
"keywords": [
"ai",
"ai-agent",
"agent",
"autonomous",
"agentic",
"coding-assistant",
"code-generation",
"code-review",
"automation",
"automation-bot",
"llm",
"openai",
"claude",
"gpt",
"gemini",
"ollama",
"deepseek",
"groq",
"mistral",
"local-llm",
"browser-automation",
"cli",
"web-search",
"security",
"enterprise",
"devtools",
"developer-tools",
"vscode-extension",
"github-action",
"sarif",
"policy-engine",
"mcp",
"multi-llm"
],
"author": "Ascendral",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Ascendral/codebot-ai.git"
},
"homepage": "https://github.com/Ascendral/codebot-ai#readme",
"bugs": {
"url": "https://github.com/Ascendral/codebot-ai/issues"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/dashboard/static/**",
"!dist/**/*.test.*",
"bin",
"README.md",
"LICENSE"
],
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"typescript": "^5.5.0"
},
"dependencies": {
"cord-engine": "^4.1.0"
},
"optionalDependencies": {
"@ai-operations/spark-engine": "^0.1.0",
"@ai-operations/ops-storage": "^0.1.0"
}
}