forked from basementstudio/xmcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.84 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.84 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
{
"name": "xmcp-monorepo",
"description": "From the basement.",
"author": {
"name": "Basement Studio",
"email": "hello@basement.studio",
"url": "https://basement.studio"
},
"contributors": [
{
"name": "Valentina Bearzotti",
"email": "valebearzotti1@gmail.com",
"url": "https://github.com/valebearzotti"
},
{
"name": "Matias Gonzalez Fernandez",
"email": "matiasngf@hotmail.com",
"url": "https://github.com/matiasngf"
}
],
"keywords": [
"mcp",
"modelcontextprotocol",
"http",
"stdio"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/basementstudio/xmcp"
},
"homepage": "https://xmcp.dev",
"scripts": {
"website": "turbo run dev --filter=website",
"xmcp": "turbo run dev --filter=xmcp",
"build": "turbo run build --filter=xmcp --filter=create-xmcp-app",
"build:all": "turbo run build",
"lint": "turbo run lint --filter=xmcp --filter=create-xmcp-app",
"lint:all": "turbo run lint",
"ci": "pnpm run build && pnpm run lint && pnpm run test:ci",
"ci:build-only": "pnpm run build && pnpm run lint && pnpm run test:build",
"test:ci": "pnpm run test:build && pnpm run test:cli",
"test:ci:skip-cli": "pnpm run test:build && pnpm run test:cli --skip",
"test:build": "scripts/test-build.sh",
"test:cli": "scripts/test-cli.sh",
"test:cli:skip": "scripts/test-cli.sh --skip",
"clean": "turbo run clean && rm -rf node_modules/.cache",
"reset": "rm -rf node_modules packages/*/node_modules packages/*/dist && pnpm install",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\""
},
"devDependencies": {
"eslint-config-custom": "workspace:",
"prettier": "^3.5.3",
"turbo": "^2.5.3"
},
"packageManager": "pnpm@10.8.1",
"engines": {
"node": "20.x"
}
}