-
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.56 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.56 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": "platter",
"version": "1.1.3",
"type": "module",
"description": "MCP server providing Read, Write, Edit, Bash, Glob, and Grep tools",
"scripts": {
"format": "biome format --write src/ tests/",
"format:check": "biome format src/ tests/",
"lint": "biome check src/ tests/",
"lint:fix": "biome check --write src/ tests/",
"typecheck": "tsc --noEmit",
"dev": "bun run src/index.ts",
"build": "bun build src/index.ts --target=bun --outdir=dist --sourcemap",
"compile": "bun build src/index.ts --compile --outfile=platter",
"compile:all": "bun run compile:linux-x64 && bun run compile:linux-arm64 && bun run compile:darwin-x64 && bun run compile:darwin-arm64",
"compile:linux-x64": "bun build src/index.ts --compile --target=bun-linux-x64 --outfile=dist/platter-linux-x64",
"compile:linux-arm64": "bun build src/index.ts --compile --target=bun-linux-arm64 --outfile=dist/platter-linux-arm64",
"compile:darwin-x64": "bun build src/index.ts --compile --target=bun-darwin-x64 --outfile=dist/platter-darwin-x64",
"compile:darwin-arm64": "bun build src/index.ts --compile --target=bun-darwin-arm64 --outfile=dist/platter-darwin-arm64",
"test": "bun test"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"diff": "^7.0.0",
"express": "^5.1.0",
"just-bash": "^2.14.0",
"zod": "^3.24.4"
},
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"@types/bun": "^1.3.11",
"@types/diff": "^7.0.2",
"@types/express": "^5.0.2",
"@types/node": "^22.15.3",
"typescript": "^5.8.3"
}
}