-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.38 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 3.38 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "@moikas/code-audit-mcp",
"version": "1.0.7",
"description": "AI-powered code auditing via MCP using local Ollama models for security, performance, and quality analysis",
"main": "dist/server/index.js",
"type": "module",
"bin": {
"code-audit": "./bin/code-audit.js",
"code-audit-mcp": "./bin/mcp-wrapper.js"
},
"preferGlobal": true,
"scripts": {
"dev": "tsx --watch src/server/server.ts",
"build": "tsc && chmod +x bin/code-audit.js",
"start": "node dist/server/server.js",
"setup": "tsx src/cli/setup.ts",
"test-audit": "tsx --test tests/*.test.ts",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"format:src": "prettier --write src/**/*.{ts,js}",
"type-check": "tsc --noEmit",
"quality-check": "npm run lint && npm run format:check && npm run type-check",
"quality-fix": "npm run lint:fix && npm run format",
"ci-check": "node scripts/ci-check.js",
"prepublishOnly": "npm run quality-check && npm run build",
"prepare": "husky",
"pack-test": "npm pack && npm install -g code-audit-mcp-1.0.0.tgz",
"test-local": "node tests/test-local.js",
"test-local-verbose": "node tests/test-local.js --verbose",
"test-publish": "node scripts/test-publish.js",
"clean": "rm -rf dist/ *.tgz",
"reinstall": "npm run clean && npm install",
"full-test": "npm run clean && npm install && npm run test-local"
},
"keywords": [
"mcp",
"code-audit",
"ollama",
"typescript",
"ai",
"security",
"code-analysis",
"static-analysis",
"code-quality",
"cli",
"global",
"model-context-protocol"
],
"author": {
"name": "Warren Gates",
"email": "warren@example.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/moikas-code/code-audit-mcp.git"
},
"bugs": {
"url": "https://github.com/moikas-code/code-audit-mcp/issues"
},
"homepage": "https://github.com/moikas-code/code-audit-mcp#readme",
"files": [
"dist/",
"bin/",
"templates/",
"README.md",
"LICENSE"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"boxen": "^8.0.1",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"conf": "^13.0.1",
"execa": "^9.5.1",
"inquirer": "^12.0.0",
"listr2": "^8.2.5",
"node-fetch": "^3.3.2",
"ollama": "^0.5.9",
"ora": "^8.1.1",
"semver": "^7.6.3",
"update-notifier": "^7.3.1"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^22.10.2",
"@types/semver": "^7.5.8",
"@types/update-notifier": "^6.0.8",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^9.17.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"lint-staged": {
"src/**/*.{ts,js}": [
"eslint --fix",
"prettier --write"
],
"bin/**/*.js": [
"eslint --fix",
"prettier --write"
],
"scripts/**/*.js": [
"eslint --fix",
"prettier --write"
],
"tests/**/*.{ts,js}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"engines": {
"node": ">=18.0.0"
},
"os": [
"darwin",
"linux",
"win32"
]
}