@ebowwa/coder 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/package.json ADDED
@@ -0,0 +1,57 @@
1
+ {
2
+ "name": "@ebowwa/coder",
3
+ "version": "0.1.0",
4
+ "description": "AI coding assistant CLI with extended thinking and teammate mode",
5
+ "author": "ebowwa",
6
+ "license": "MIT",
7
+ "keywords": [
8
+ "coder",
9
+ "cli",
10
+ "ai",
11
+ "anthropic",
12
+ "mcp"
13
+ ],
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/ebowwa/codespaces"
17
+ },
18
+ "type": "module",
19
+ "main": "dist/index.js",
20
+ "bin": {
21
+ "coder": "dist/cli.js"
22
+ },
23
+ "scripts": {
24
+ "build": "bun run build:ts && bun run build:native",
25
+ "build:ts": "bun build ./src/index.ts ./src/cli.ts --outdir ./dist --target bun --minify --splitting",
26
+ "build:native": "cd rust && cargo build --release --target-dir ./target",
27
+ "dev": "bun run --watch src/cli.ts",
28
+ "cli": "bun run src/cli.ts",
29
+ "test": "bun test"
30
+ },
31
+ "files": [
32
+ "dist",
33
+ "native"
34
+ ],
35
+ "dependencies": {
36
+ "@ebowwa/coder-native": "^0.1.0",
37
+ "@anthropic-ai/sdk": "^0.39.0",
38
+ "@modelcontextprotocol/sdk": "^1.10.0",
39
+ "ink": "^5.0.1",
40
+ "react": "^18.3.1",
41
+ "zod": "^3.24.2",
42
+ "yargs": "^17.7.2",
43
+ "chalk": "^5.4.1",
44
+ "ora": "^8.2.0",
45
+ "glob": "^11.0.1",
46
+ "ws": "^8.18.0",
47
+ "eventsource": "^3.0.6"
48
+ },
49
+ "devDependencies": {
50
+ "@types/bun": "^1.3.9",
51
+ "@types/react": "^18.3.18",
52
+ "@types/yargs": "^17.0.33",
53
+ "@types/ws": "^8.5.14",
54
+ "@types/eventsource": "^1.1.15",
55
+ "typescript": "^5.9.3"
56
+ }
57
+ }