-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.1 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.1 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
{
"name": "gemini-kit",
"version": "4.0.0",
"description": "Super Engineer - Team of AI Agents for software development",
"type": "module",
"scripts": {
"build": "tsc && npm run bundle",
"bundle": "esbuild src/kit-server.ts --bundle --platform=node --format=esm --outfile=dist/kit-server.js --external:node:* --banner:js=\"import { createRequire } from 'module'; const require = createRequire(import.meta.url);\"",
"watch": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"diff": "^8.0.2",
"zod": "^3.22.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/diff": "^7.0.2",
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^2.1.0",
"esbuild": "^0.27.2",
"eslint": "^9.39.2",
"typescript": "^5.3.0",
"typescript-eslint": "^8.50.0",
"vitest": "^2.1.0"
}
}