forked from lorryjovens-hub/claude-code-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) Β· 1.63 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) Β· 1.63 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
53
54
55
56
57
58
59
60
61
62
{
"name": "claude-code-rust",
"version": "0.1.1",
"description": "Claude Code Rust implementation - AI-powered coding assistant",
"license": "MIT",
"author": "Claude Code Team",
"repository": {
"type": "git",
"url": "https://github.com/lorryjovens-hub/claude-code-rust.git"
},
"homepage": "https://github.com/lorryjovens-hub/claude-code-rust",
"bugs": {
"url": "https://github.com/lorryjovens-hub/claude-code-rust/issues"
},
"keywords": [
"claude",
"code",
"ai",
"assistant",
"coding",
"rust",
"cli"
],
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"files": [
"dist/",
"bin/",
"README.md",
"LICENSE"
],
"main": "dist/index.js",
"bin": {
"claude": "./bin/claude.exe",
"claude-code": "./bin/claude.exe"
},
"scripts": {
"version": "node scripts/version.js",
"build": "cargo build --release && node scripts/build.js",
"build:dev": "cargo build && node scripts/build.js --dev",
"test": "cargo test && npm run test:js",
"test:js": "node scripts/test.js",
"lint": "cargo clippy -- -D warnings",
"fmt": "cargo fmt --all",
"clean": "cargo clean && rm -rf dist bin",
"prepublishOnly": "echo 'Skipping build for now'",
"publish:npm": "npm publish --access public",
"publish:github": "node scripts/publish-github.js",
"release": "npm run version && npm run build && npm run publish:npm && npm run publish:github"
},
"devDependencies": {
"semver": "^7.6.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"optionalDependencies": {},
"dependencies": {}
}