codingbuddy 0.2.1 → 0.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codingbuddy",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
4
4
  "description": "Multi-AI Rules MCP Server",
5
5
  "main": "dist/src/main.js",
6
6
  "bin": {
@@ -9,31 +9,29 @@
9
9
  },
10
10
  "files": [
11
11
  "dist",
12
- ".ai-rules",
13
12
  "README.md"
14
13
  ],
15
14
  "publishConfig": {
16
15
  "access": "public"
17
16
  },
18
17
  "scripts": {
19
- "prepublishOnly": "cp -r ../.ai-rules . && yarn build && chmod +x dist/src/main.js dist/src/cli/cli.js",
20
- "postpublish": "rm -rf .ai-rules",
21
- "build": "tsc -p tsconfig.build.json",
18
+ "prepublishOnly": "yarn build && chmod +x dist/src/main.js dist/src/cli/cli.js",
19
+ "build": "yarn tsc -p tsconfig.build.json",
22
20
  "start": "node dist/src/main.js",
23
- "start:dev": "ts-node src/main.ts",
24
- "test": "vitest run",
25
- "test:watch": "vitest",
26
- "test:coverage": "vitest run --coverage",
27
- "lint": "eslint src/",
28
- "lint:fix": "eslint src/ --fix",
29
- "format": "prettier --write 'src/**/*.ts'",
30
- "format:check": "prettier --check 'src/**/*.ts'",
31
- "typecheck": "tsc --noEmit",
32
- "circular": "madge --circular --extensions ts src/",
21
+ "start:dev": "yarn ts-node src/main.ts",
22
+ "test": "yarn vitest run",
23
+ "test:watch": "yarn vitest",
24
+ "test:coverage": "yarn vitest run --coverage",
25
+ "lint": "yarn eslint src/",
26
+ "lint:fix": "yarn eslint src/ --fix",
27
+ "format": "yarn prettier --write 'src/**/*.ts'",
28
+ "format:check": "yarn prettier --check 'src/**/*.ts'",
29
+ "typecheck": "yarn tsc --noEmit",
30
+ "circular": "yarn madge --circular --extensions ts src/",
33
31
  "validate": "yarn lint && yarn format:check && yarn typecheck && yarn test && yarn circular",
34
- "validate:rules": "cd .. && ./scripts/validate-rules.sh",
35
- "validate:rules:schema": "cd .. && ./scripts/validate-rules.sh --schema-only",
36
- "validate:rules:markdown": "cd .. && ./scripts/validate-rules.sh --markdown-only"
32
+ "validate:rules": "cd ../.. && ./scripts/validate-rules.sh",
33
+ "validate:rules:schema": "cd ../.. && ./scripts/validate-rules.sh --schema-only",
34
+ "validate:rules:markdown": "cd ../.. && ./scripts/validate-rules.sh --markdown-only"
37
35
  },
38
36
  "dependencies": {
39
37
  "@anthropic-ai/sdk": "^0.71.2",
@@ -42,6 +40,7 @@
42
40
  "@nestjs/config": "^4.0.2",
43
41
  "@nestjs/core": "^11.1.9",
44
42
  "@nestjs/platform-express": "^11.1.9",
43
+ "codingbuddy-rules": "0.2.3",
45
44
  "reflect-metadata": "^0.2.2",
46
45
  "rxjs": "^7.8.1",
47
46
  "zod": "^4.2.1"