-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.29 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
{
"name": "messagekit-workspace",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"packages/skills/*"
],
"type": "module",
"scripts": {
"build:cli": "bun run --filter @codewithantonio/messagekit build",
"build:core": "bun run --filter @codewithantonio/messagekit-core build",
"build:local-mcp": "bun run --filter @codewithantonio/messagekit-mcp build",
"dev:cli": "bun run packages/cli/src/index.ts",
"dev:local-mcp": "bun run packages/local-mcp/src/index.ts",
"dev:remote-mcp": "bun run apps/remote-mcp/src/index.ts",
"format": "oxfmt . --write",
"format:check": "oxfmt . --check",
"lint": "oxlint . --deny-warnings",
"lint:fix": "oxlint . --fix",
"release:check": "bun run format:check && bun run lint && bun run typecheck && bun run build:core && bun run build:cli && bun run build:local-mcp",
"release:pack:cli": "cd packages/cli && bun run build && npm pack --dry-run",
"release:pack:core": "cd packages/core && bun run build && npm pack --dry-run",
"release:pack:local-mcp": "cd packages/local-mcp && bun run build && npm pack --dry-run",
"typecheck": "bun run --filter '*' typecheck"
},
"devDependencies": {
"oxfmt": "^0.52.0",
"oxlint": "^1.67.0",
"tsdown": "^0.22.1",
"typescript": "^5.9.3"
}
}