-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.83 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.83 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
{
"name": "@j0hanz/code-lens-mcp",
"version": "0.12.0",
"mcpName": "io.github.j0hanz/code-lens",
"description": "Gemini-powered MCP server for code analysis.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"bin": {
"code-lens": "dist/index.js"
},
"files": [
"dist",
"README.md"
],
"author": "j0hanz",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/j0hanz/code-lens.git"
},
"homepage": "https://github.com/j0hanz/code-lens#readme",
"keywords": [
"mcp",
"mcp-server",
"code-lens",
"code-review",
"code-suggestions",
"code-explanations",
"code-refactorings",
"google-genai",
"typescript"
],
"scripts": {
"clean": "node scripts/tasks.mjs clean",
"build": "node scripts/tasks.mjs build",
"copy:assets": "node scripts/tasks.mjs copy:assets",
"prepare": "npm run build",
"dev": "tsc --watch --preserveWatchOutput",
"dev:run": "node --env-file=.env --watch dist/index.js",
"start": "node dist/index.js",
"format": "prettier --write .",
"type-check": "node scripts/tasks.mjs type-check",
"type-check:src": "node node_modules/typescript/bin/tsc -p tsconfig.json --noEmit",
"type-check:tests": "node node_modules/typescript/bin/tsc -p tsconfig.test.json --noEmit",
"type-check:diagnostics": "tsc --noEmit --extendedDiagnostics",
"type-check:trace": "node -e \"require('fs').rmSync('.ts-trace',{recursive:true,force:true})\" && tsc --noEmit --generateTrace .ts-trace",
"lint": "eslint .",
"lint:tests": "eslint src/__tests__",
"lint:fix": "eslint . --fix",
"test": "node scripts/tasks.mjs test",
"test:fast": "node --test --import tsx/esm tests/**/*.test.ts",
"test:coverage": "node scripts/tasks.mjs test --coverage",
"knip": "knip",
"knip:fix": "knip --fix",
"inspector": "npm run build && npx -y @modelcontextprotocol/inspector node --env-file=.env dist/index.js",
"prepublishOnly": "npm run lint && npm run type-check && npm run build"
},
"dependencies": {
"@google/genai": "^1.44.0",
"@modelcontextprotocol/sdk": "^1.27.1",
"diff": "^8.0.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/diff": "^8",
"@types/node": "^24",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-de-morgan": "^2.1.1",
"eslint-plugin-depend": "^1.4.0",
"eslint-plugin-unused-imports": "^4.4.1",
"knip": "^5.86.0",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
},
"engines": {
"node": ">=24"
}
}