-
Notifications
You must be signed in to change notification settings - Fork 327
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.89 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.89 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
{
"name": "eff-u-code",
"version": "2.2.2",
"description": "Production-grade code quality analyzer with AST parsing and AI integration",
"type": "module",
"main": "dist/index.js",
"bin": {
"fuck-u-code": "bin/fuck-u-code.js",
"fuck-u-code-mcp": "bin/fuck-u-code-mcp.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "vitest",
"test:coverage": "vitest --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"prepare": "npm run build",
"postinstall": "node bin/postinstall.js"
},
"keywords": [
"code-quality",
"static-analysis",
"ast",
"tree-sitter",
"ai",
"code-review",
"complexity",
"metrics"
],
"author": "Done-0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Done-0/fuck-u-code.git"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.74.0",
"@modelcontextprotocol/sdk": "^1.26.0",
"chalk": "^5.4.1",
"cli-table3": "^0.6.5",
"commander": "^14.0.3",
"cosmiconfig": "^9.0.0",
"glob": "^11.0.0",
"ignore": "^7.0.5",
"inquirer": "^13.2.2",
"openai": "^4.77.0",
"ora": "^9.3.0",
"p-limit": "^6.0.0",
"tree-sitter-wasms": "^0.1.13",
"web-tree-sitter": "^0.24.7",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.0.0",
"prettier": "^3.5.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.55.0",
"vitest": "^3.0.0"
},
"files": [
"dist",
"bin",
"README.md"
]
}