-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 3 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
92
93
94
95
96
97
98
99
100
101
{
"name": "mcp",
"author": "WeMake (https://wemake.cx)",
"repository": {
"type": "git",
"url": "git+https://github.com/WeMake-Labs/mcp.git"
},
"bugs": {
"url": "https://github.com/WeMake-Labs/mcp/issues"
},
"description": "WeMake Model Context Protocol (MCP) servers",
"homepage": "https://wemake.cx",
"license": "MIT",
"type": "module",
"workspaces": [
"src/*"
],
"private": true,
"engines": {
"bun": ">=1.3.0"
},
"packageManager": "bun@1.3.0",
"scripts": {
"start": "bun run --filter='./src/*' start",
"build-all": "bun run --filter='./src/*' build",
"watch": "bun run --filter='./src/*' watch",
"test": "bun test",
"prepare": "bun run --filter='./src/*' build",
"test:all": "bun run --filter='./src/*' test",
"test:coverage": "bun test --coverage",
"test:coverage:all": "bun run --filter='./src/*' test --coverage",
"publish-all": "bun run --filter='./src/*' publish",
"link-all": "bun link --workspaces",
"format": "prettier --write . && eslint . --ext .ts,.tsx --fix",
"format:yaml": "prettier --write '**/*.{yml,yaml}'",
"lint:yaml": "prettier --check '**/*.{yml,yaml}'",
"prettier": "prettier --check .",
"lint": "eslint . --ext .ts,.tsx",
"check": "tsc --noEmit",
"cleanup": "find . -name 'node_modules' -type d -exec rm -rf {} + 2>/dev/null || true && find . -name 'dist' -type d -exec rm -rf {} + 2>/dev/null || true"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.26.0",
"@wemake.cx/analogical-reasoning": "*",
"@wemake.cx/bias-detection": "*",
"@wemake.cx/constraint-solver": "*",
"@wemake.cx/decision-framework": "*",
"@wemake.cx/ethical-reasoning": "*",
"@wemake.cx/focus-group": "*",
"@wemake.cx/goal-tracker": "*",
"@wemake.cx/memory": "*",
"@wemake.cx/metacognitive-monitoring": "*",
"@wemake.cx/multimodal-synthesizer": "*",
"@wemake.cx/narrative-planner": "*",
"@wemake.cx/scientific-method": "*",
"@wemake.cx/sequential-thinking": "*",
"@wemake.cx/structured-argumentation": "*",
"@wemake.cx/transaction-manager": "*",
"@wemake.cx/visual-reasoning": "*"
},
"devDependencies": {
"@eslint/js": "9.37.0",
"@nx/eslint": "21.6.4",
"@tsconfig/bun": "1.0.9",
"@types/bun": "1.2.21",
"@typescript-eslint/eslint-plugin": "8.46.0",
"@typescript-eslint/parser": "8.46.0",
"eslint": "9.37.0",
"globals": "15.15.0",
"markdownlint": "0.38.0",
"nx": "21.6.4",
"prettier": "3.6.2",
"typescript": "5.9.3",
"vite-tsconfig-paths": "5.1.4"
},
"prettier": {
"trailingComma": "none",
"printWidth": 120,
"proseWrap": "always",
"endOfLine": "lf",
"overrides": [
{
"files": [
".github/workflows/*.yml"
],
"options": {
"proseWrap": "never",
"objectWrap": "collapse"
}
},
{
"files": [
".cursor/rules/*.mdc"
],
"options": {
"parser": "markdown"
}
}
]
}
}