@codeyantram/cli 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,53 @@
1
+ {
2
+ "name": "@codeyantram/cli",
3
+ "version": "0.1.0",
4
+ "license": "MIT",
5
+ "module": "src/index.tsx",
6
+ "type": "module",
7
+ "bin": {
8
+ "codeyantram": "dist/index.js"
9
+ },
10
+ "files": [
11
+ "dist",
12
+ "README.md",
13
+ "LICENSE"
14
+ ],
15
+ "scripts": {
16
+ "dev": "bun run --watch src/index.tsx",
17
+ "build": "bun run -F @codeyantram/server build && bun build src/index.tsx --target=bun --outdir dist --banner '#!/usr/bin/env bun' --external react --external '@opentui/*' --external web-tree-sitter --external 'tree-sitter-*' && cp ../server/dist/index.js dist/server.js && chmod +x dist/index.js",
18
+ "prepack": "bun run build && cp ../../README.md README.md && cp ../../LICENSE LICENSE",
19
+ "typecheck": "tsc --noEmit",
20
+ "test": "bun test"
21
+ },
22
+ "devDependencies": {
23
+ "@codeyantram/server": "workspace:*",
24
+ "@codeyantram/shared": "workspace:*",
25
+ "@types/react": "^19.2.18",
26
+ "hono": "^4.13.5",
27
+ "typescript": "^5.9.3"
28
+ },
29
+ "dependencies": {
30
+ "@libsql/client": "0.18.0",
31
+ "@opentui/core": "^0.5.8",
32
+ "@opentui/react": "^0.5.8",
33
+ "@vscode/ripgrep": "^1.18.0",
34
+ "react": "^19.2.8",
35
+ "tree-sitter-bash": "^0.25.1",
36
+ "tree-sitter-c": "^0.24.1",
37
+ "tree-sitter-c-sharp": "^0.23.5",
38
+ "tree-sitter-cpp": "^0.23.4",
39
+ "tree-sitter-css": "^0.25.0",
40
+ "tree-sitter-go": "^0.25.0",
41
+ "tree-sitter-html": "^0.23.2",
42
+ "tree-sitter-java": "^0.23.5",
43
+ "tree-sitter-json": "^0.24.8",
44
+ "tree-sitter-php": "^0.24.2",
45
+ "tree-sitter-python": "^0.25.0",
46
+ "tree-sitter-ruby": "^0.23.1",
47
+ "tree-sitter-rust": "^0.24.0",
48
+ "web-tree-sitter": "0.25.10"
49
+ },
50
+ "engines": {
51
+ "bun": ">=1.3.0"
52
+ }
53
+ }