-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.32 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.32 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@techdebtgpt/codewave",
"version": "0.1.11",
"description": "CodeWave - AI-Powered Commit Intelligence. Multi-agent system for comprehensive code quality evaluation using 7-pillar methodology.",
"main": "./dist/cli/index.js",
"types": "./dist/src/index.d.ts",
"typings": "./dist/src/index.d.ts",
"scripts": {
"start": "node ./dist/cli/index.js",
"build": "tsc",
"build:watch": "tsc --watch",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prettier": "prettier --write '**/*.{ts,js,json,md}'",
"prettier:check": "prettier --check '**/*.{ts,js,json,md}'",
"test": "echo 'Tests not configured yet. Run: npm run build && npm run lint'",
"docs": "echo 'CodeWave Documentation' && echo '' && echo 'Start at: docs/INDEX.md' && echo 'Main docs: README.md' && echo '' && ls -lah docs/*.md | awk '{print $9, \"(\" $5 \")\"}'",
"docs:readme": "echo 'Main Documentation: README.md'",
"docs:quick-ref": "cat docs/QUICK_REFERENCE.md | head -50",
"docs:cli": "cat docs/CLI.md | head -100",
"docs:api": "cat docs/API.md | head -100",
"validate:publish": "npm run build && npm run lint && npm run prettier:check",
"prepublishOnly": "npm run validate:publish",
"prepack": "npm run build",
"postpack": "echo '✅ Package created successfully'",
"batch": "node ./dist/cli/index.js batch --count 3"
},
"bin": {
"codewave": "./dist/cli/index.js"
},
"type": "commonjs",
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/lodash": "^4.17.21",
"@types/node": "^20.19.24",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"typescript": "^5.9.3"
},
"keywords": [
"@techdebtgpt/codewave",
"codewave",
"commit-intelligence",
"ai-code-review",
"multi-agent",
"code-quality",
"commit-evaluation",
"7-pillar-methodology",
"langchain",
"langgraph",
"ai-agents",
"git-analysis",
"technical-debt",
"code-metrics",
"code-review-automation",
"html-reports",
"typescript",
"claude",
"openai",
"gemini"
],
"author": "TechDebtGPT",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/techdebtgpt/codewave.git"
},
"bugs": {
"url": "https://github.com/techdebtgpt/codewave/issues"
},
"homepage": "https://github.com/techdebtgpt/codewave#readme",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"files": [
"dist",
"cli",
"src",
"README.md",
"docs",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@langchain/anthropic": "^1.2.0",
"@langchain/classic": "^1.0.5",
"@langchain/core": "^1.1.1",
"@langchain/google-genai": "^2.0.1",
"@langchain/groq": "^1.0.2",
"@langchain/langgraph": "^1.0.2",
"@langchain/ollama": "^1.0.3",
"@langchain/openai": "^1.1.3",
"@types/cli-progress": "^3.11.6",
"@types/inquirer": "^9.0.9",
"chalk": "^4.1.2",
"cli-progress": "^3.12.0",
"commander": "^14.0.2",
"dotenv": "^17.2.3",
"inquirer": "^8.2.7",
"langchain": "^1.1.2",
"ora": "^5.4.1",
"p-limit": "^5.0.0",
"table": "^6.9.0"
}
}