-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1014 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1014 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
33
34
35
36
37
38
39
{
"name": "relaywash",
"version": "0.1.0",
"description": "Clean agent tool output, lower token burn. Replaces Claude Code's built-in file/shell tools with structured Rust equivalents.",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/AgentWorkforce/wash",
"repository": {
"type": "git",
"url": "git+https://github.com/AgentWorkforce/wash.git"
},
"bin": {
"wash": "bin/wash.mjs",
"relaywash": "bin/wash.mjs"
},
"files": [
"bin",
"CHANGELOG.md",
"README.md",
"package.json"
],
"scripts": {
"build": "cargo build --release && node scripts/copy-binary.mjs",
"test": "cargo test --release"
},
"engines": {
"node": ">=18"
},
"optionalDependencies": {
"@relaywash/wash-darwin-arm64": "0.1.0",
"@relaywash/wash-darwin-x64": "0.1.0",
"@relaywash/wash-linux-arm64": "0.1.0",
"@relaywash/wash-linux-x64": "0.1.0",
"@relaywash/wash-win32-x64": "0.1.0"
},
"publishConfig": {
"access": "public"
}
}