-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.1 KB
/
package.json
File metadata and controls
37 lines (37 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
33
34
35
36
37
{
"name": "xmcp-templates",
"version": "1.0.0",
"description": "Foundational templates for building with xmcp",
"keywords": [
"mcp",
"xmcp",
"templates"
],
"homepage": "https://github.com/xmcp-dev/templates#readme",
"bugs": {
"url": "https://github.com/xmcp-dev/templates/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xmcp-dev/templates.git"
},
"license": "ISC",
"author": "xmcp",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --ui tui",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"format": "prettier --config ./.config/prettier.config.json --ignore-path ./.config/.prettierignore --write README.md package.json turbo.json",
"format:check": "prettier --config ./.config/prettier.config.json --ignore-path ./.config/.prettierignore --check README.md package.json turbo.json",
"clean": "turbo run clean && rm -rf node_modules"
},
"devDependencies": {
"prettier": "^3.4.2",
"turbo": "^2.6.1"
},
"packageManager": "pnpm@10.8.1",
"engines": {
"node": "v20.x"
}
}