-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 831 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 831 Bytes
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
{
"name": "mcp-monorepo",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"playground",
"examples/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fiberplane/mcp-lite.git"
},
"homepage": "https://github.com/fiberplane/mcp-lite",
"scripts": {
"build": "bun run --filter=* build",
"typecheck": "bun run --filter=* typecheck",
"lint": "biome check --write .",
"test": "bun run --filter=* test",
"test:watch": "bun run --filter=* test:watch",
"changeset": "changeset",
"prepublishOnly": "bun run --filter=* prepublishOnly"
},
"devDependencies": {
"@biomejs/biome": "^2.2.4",
"@changesets/cli": "^2.29.7",
"@types/bun": "^1.3.0",
"arktype": "^2.1.22",
"pkg-pr-new": "^0.0.59",
"typescript": "^5.9.2"
}
}