-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.5 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.5 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
{
"type": "module",
"name": "omp-typescript-complexity-evaluator",
"version": "1.0.3",
"description": "Oh My Pi plugin for scoring TypeScript function complexity and ranking offenders.",
"homepage": "https://github.com/maximhar/omp-typescript-complexity-evaluator#readme",
"author": "Maxim Harizanov",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/maximhar/omp-typescript-complexity-evaluator.git"
},
"bugs": {
"url": "https://github.com/maximhar/omp-typescript-complexity-evaluator/issues"
},
"keywords": [
"typescript",
"complexity",
"cognitive-complexity",
"analysis",
"omp",
"oh-my-pi",
"plugin",
"mcp"
],
"scripts": {
"check": "tsc --noEmit -p tsconfig.json",
"test": "bun test",
"verify": "bun run test && bun run check",
"mcp": "bun src/mcp-server.ts",
"prepare:publish": "bun scripts/prepare-publish-version.mjs"
},
"peerDependencies": {
"@oh-my-pi/pi-coding-agent": "^13"
},
"peerDependenciesMeta": {
"@oh-my-pi/pi-coding-agent": {
"optional": true
}
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.28.0",
"typescript": "^5.9.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@oh-my-pi/pi-coding-agent": "^13",
"@types/bun": "^1.3.0"
},
"engines": {
"bun": ">=1.3.7"
},
"publishConfig": {
"access": "public"
},
"bin": {
"omp-typescript-complexity-evaluator-mcp": "./bin/omp-typescript-complexity-evaluator-mcp"
},
"omp": {
"extensions": [
"./src/extension.ts"
]
},
"files": [
"src",
"bin"
]
}