-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.85 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
{
"name": "codingbuddy",
"version": "1.0.0",
"description": "Multi-AI Rules MCP Server",
"main": "dist/src/main.js",
"bin": {
"codingbuddy": "./dist/src/cli/cli.js",
"codingbuddy-mcp": "./dist/src/main.js"
},
"files": [
"dist",
".ai-rules",
"README.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"prepublishOnly": "cp -r ../.ai-rules . && yarn build && chmod +x dist/src/main.js dist/src/cli/cli.js",
"postpublish": "rm -rf .ai-rules",
"build": "tsc -p tsconfig.build.json",
"start": "node dist/src/main.js",
"start:dev": "ts-node src/main.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write 'src/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts'",
"typecheck": "tsc --noEmit",
"circular": "madge --circular --extensions ts src/",
"validate": "yarn lint && yarn format:check && yarn typecheck && yarn test && yarn circular"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.71.2",
"@modelcontextprotocol/sdk": "^1.0.1",
"@nestjs/common": "^10.0.0",
"@nestjs/config": "^3.0.0",
"@nestjs/core": "^10.0.0",
"@nestjs/platform-express": "^11.1.9",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"zod": "^3.22.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@nestjs/cli": "^10.0.0",
"@nestjs/schematics": "^10.0.0",
"@types/express": "^4.17.17",
"@types/node": "^20.3.1",
"@vitest/coverage-v8": "^4.0.15",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"madge": "^8.0.0",
"prettier": "^3.7.4",
"ts-node": "^10.9.1",
"typescript": "^5.1.3",
"typescript-eslint": "^8.50.0",
"vitest": "^4.0.15"
},
"packageManager": "yarn@4.11.0"
}