clawdcode 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +138 -0
- package/dist/main.js +61910 -0
- package/package.json +66 -0
package/package.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "clawdcode",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "A CLI Coding Agent inspired by Claude Code - An AI-powered coding assistant that can read, write, and execute code",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/main.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"clawdcode": "./dist/main.js"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"dev": "bun run src/main.tsx",
|
|
12
|
+
"build": "bun build src/main.tsx --outdir dist --target node && chmod +x dist/main.js",
|
|
13
|
+
"start": "bun dist/main.js",
|
|
14
|
+
"typecheck": "tsc --noEmit",
|
|
15
|
+
"prepublishOnly": "bun run build"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"cli",
|
|
19
|
+
"ai",
|
|
20
|
+
"coding-agent",
|
|
21
|
+
"llm",
|
|
22
|
+
"openai",
|
|
23
|
+
"gpt",
|
|
24
|
+
"claude",
|
|
25
|
+
"copilot",
|
|
26
|
+
"assistant",
|
|
27
|
+
"terminal",
|
|
28
|
+
"developer-tools"
|
|
29
|
+
],
|
|
30
|
+
"author": "kkkhs",
|
|
31
|
+
"license": "MIT",
|
|
32
|
+
"repository": {
|
|
33
|
+
"type": "git",
|
|
34
|
+
"url": "git+https://github.com/kkkhs/ClawdCode.git"
|
|
35
|
+
},
|
|
36
|
+
"homepage": "https://github.com/kkkhs/ClawdCode#readme",
|
|
37
|
+
"bugs": {
|
|
38
|
+
"url": "https://github.com/kkkhs/ClawdCode/issues"
|
|
39
|
+
},
|
|
40
|
+
"files": [
|
|
41
|
+
"dist",
|
|
42
|
+
"README.md",
|
|
43
|
+
"LICENSE"
|
|
44
|
+
],
|
|
45
|
+
"engines": {
|
|
46
|
+
"node": ">=18.0.0"
|
|
47
|
+
},
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"chalk": "^5.4.1",
|
|
50
|
+
"ink": "^6.0.0",
|
|
51
|
+
"ink-spinner": "^5.0.0",
|
|
52
|
+
"ink-text-input": "^6.0.0",
|
|
53
|
+
"openai": "^4.77.0",
|
|
54
|
+
"react": "^19.0.0",
|
|
55
|
+
"yargs": "^17.7.2",
|
|
56
|
+
"zod": "^3.24.2"
|
|
57
|
+
},
|
|
58
|
+
"devDependencies": {
|
|
59
|
+
"@types/node": "^22.10.2",
|
|
60
|
+
"@types/react": "^19.0.0",
|
|
61
|
+
"@types/yargs": "^17.0.33",
|
|
62
|
+
"react-devtools-core": "^7.0.1",
|
|
63
|
+
"tsx": "^4.19.2",
|
|
64
|
+
"typescript": "^5.7.2"
|
|
65
|
+
}
|
|
66
|
+
}
|