-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) 路 2.12 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) 路 2.12 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "clawdcode",
"version": "1.8.0",
"description": "A CLI Coding Agent inspired by Claude Code - An AI-powered coding assistant that can read, write, and execute code",
"type": "module",
"main": "dist/main.js",
"bin": {
"clawdcode": "./dist/main.js"
},
"scripts": {
"dev": "bun run src/main.tsx",
"build": "bun build src/main.tsx --outdir dist --target node && chmod +x dist/main.js",
"start": "bun dist/main.js",
"typecheck": "tsc --noEmit",
"test:prompts": "bun run src/prompts/test.ts",
"test:tools": "bun run src/tools/test.ts",
"test:pipeline": "bun run src/tools/execution/test.ts",
"test:context": "bun run src/context/test.ts",
"test:mcp": "bun run src/mcp/test.ts",
"test:store": "bun run src/store/test.ts",
"prepublishOnly": "bun run build"
},
"keywords": [
"cli",
"ai",
"coding-agent",
"llm",
"openai",
"gpt",
"claude",
"copilot",
"assistant",
"terminal",
"developer-tools"
],
"author": "kkkhs",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kkkhs/ClawdCode.git"
},
"homepage": "https://github.com/kkkhs/ClawdCode#readme",
"bugs": {
"url": "https://github.com/kkkhs/ClawdCode/issues"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.3",
"chalk": "^5.4.1",
"fuse.js": "^7.1.0",
"glob": "^13.0.0",
"ink": "^6.0.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"js-tiktoken": "^1.0.21",
"lowlight": "^3.3.0",
"minimatch": "^10.1.1",
"nanoid": "^5.1.6",
"openai": "^4.77.0",
"react": "^19.0.0",
"string-width": "^8.1.1",
"yaml": "^2.8.2",
"yargs": "^17.7.2",
"zod": "^3.24.2",
"zod-to-json-schema": "^3.25.1",
"zustand": "^5.0.11"
},
"devDependencies": {
"@types/minimatch": "^6.0.0",
"@types/node": "^22.10.2",
"@types/react": "^19.0.0",
"@types/yargs": "^17.0.33",
"react-devtools-core": "^7.0.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}