-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.06 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
{
"name": "sendkit-workspace",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"type": "module",
"scripts": {
"format": "oxfmt . --write",
"format:check": "oxfmt . --check",
"lint": "oxlint . --deny-warnings",
"lint:fix": "oxlint . --fix",
"build:core": "bun run --filter @cwa-dev/sendkit-core build",
"build:cli": "bun run --filter @cwa-dev/sendkit build",
"build:local-mcp": "bun run --filter @cwa-dev/sendkit-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",
"release:pack:core": "bun run --filter @cwa-dev/sendkit-core pack:dry",
"release:pack:cli": "bun run --filter @cwa-dev/sendkit pack:dry",
"release:pack:local-mcp": "bun run --filter @cwa-dev/sendkit-mcp pack:dry",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "^25.9.2",
"oxfmt": "^0.53.0",
"oxlint": "^1.68.0",
"tsdown": "^0.22.2",
"typescript": "^6.0.3"
}
}