-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.44 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "@codewithkenzo/blitz",
"version": "0.1.0-alpha.10",
"description": "Fast Zig edit CLI for coding agents. Tree-sitter powered, token-efficient, MCP-ready.",
"type": "module",
"license": "MIT",
"private": false,
"bin": {
"blitz": "bin/blitz.js",
"blitz-mcp": "mcp/blitz-mcp.js"
},
"files": [
"bin/blitz.js",
"mcp/blitz-mcp.ts",
"mcp/blitz-mcp.js",
"scripts/mcp-smoke.ts",
"scripts/resolve-platform-bin.js",
"README.md",
"LICENSE",
"NOTICE.md",
"docs/blitz.md"
],
"optionalDependencies": {
"@codewithkenzo/blitz-linux-x64-musl": "0.1.0-alpha.10",
"@codewithkenzo/blitz-linux-arm64-musl": "0.1.0-alpha.10",
"@codewithkenzo/blitz-darwin-arm64": "0.1.0-alpha.10",
"@codewithkenzo/blitz-darwin-x64": "0.1.0-alpha.10",
"@codewithkenzo/blitz-windows-x64": "0.1.0-alpha.10"
},
"scripts": {
"bench": "bun bench/run.ts",
"bench:llm": "bun bench/llm-tokens.ts",
"bench:pi-local": "bun bench/pi-matrix.ts",
"bench:large": "bun bench/deep-large-symbol.ts",
"bench:small-target": "bun bench/deep-small-target.ts",
"smoke:mcp": "bun scripts/mcp-smoke.ts",
"pack:check": "npm pack --dry-run --json",
"pack:linux-x64-musl": "npm pack ./packages/blitz-linux-x64-musl --json"
},
"keywords": [
"ast",
"tree-sitter",
"code-edit",
"mcp",
"pi-agent"
],
"devDependencies": {
"@types/node": "^24.10.1",
"tiktoken": "^1.0.22"
}
}