-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.19 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
52
{
"name": "claude-code-rust",
"version": "0.14.7",
"description": "Claude Code Rust - native Rust terminal interface for Claude Code",
"keywords": [
"cli",
"tui",
"claude",
"claude-code",
"anthropic",
"agent-sdk",
"ai",
"terminal",
"rust",
"ratatui"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/srothgan/claude-code-rust.git"
},
"bugs": {
"url": "https://github.com/srothgan/claude-code-rust/issues"
},
"homepage": "https://github.com/srothgan/claude-code-rust#readme",
"bin": {
"claude-rs": "bin/claude-rs.js"
},
"files": [
"bin",
"agent-sdk/dist",
"LICENSE",
"README.md"
],
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "0.3.270"
},
"scripts": {
"prepack": "npm --prefix agent-sdk run build",
"quality:duplicates": "jscpd --config .jscpd.json src agent-sdk/src bin --no-tips --no-colors",
"quality:duplicates:summary": "node scripts/quality/jscpd-warning-summary.mjs jscpd-report/jscpd-report.json"
},
"devDependencies": {
"jscpd": "5.2.0"
},
"engines": {
"node": ">=24"
},
"publishConfig": {
"access": "public"
}
}