falconsh 1.0.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/README.md +181 -0
- package/dist/cli.js +2191 -0
- package/package.json +50 -0
package/package.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "falconsh",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Run any coding agent with any LLM in absolute privacy.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist",
|
|
8
|
+
"README.md"
|
|
9
|
+
],
|
|
10
|
+
"publishConfig": {
|
|
11
|
+
"access": "public"
|
|
12
|
+
},
|
|
13
|
+
"bin": {
|
|
14
|
+
"falconsh": "./dist/cli.js",
|
|
15
|
+
"falcon": "./dist/cli.js"
|
|
16
|
+
},
|
|
17
|
+
"scripts": {
|
|
18
|
+
"build": "tsup src/cli.ts --format esm --target node22 --clean && node -e \"const fs=require('fs');const f='dist/cli.js';fs.writeFileSync(f,'#!/usr/bin/env node\\n'+fs.readFileSync(f));\" && chmod +x dist/cli.js",
|
|
19
|
+
"dev": "tsx src/cli.ts",
|
|
20
|
+
"start": "node dist/cli.js",
|
|
21
|
+
"test": "tsx --test \"src/**/*.test.ts\"",
|
|
22
|
+
"e2e": "bash e2e/run.sh",
|
|
23
|
+
"check:types": "tsc --noEmit",
|
|
24
|
+
"check:format": "biome format --fix src e2e",
|
|
25
|
+
"check:lint": "biome lint --fix src e2e",
|
|
26
|
+
"check:all": "npm run check:types && npm run check:format && npm run check:lint",
|
|
27
|
+
"launch:claude-auth-status": "npm run dev -- launch claude -m auto auth status",
|
|
28
|
+
"launch:claude-it": "npm run dev -- launch claude --verbose -m deepseek/deepseek-v4-flash:free",
|
|
29
|
+
"launch:claude-with-prompt": "npm run dev -- launch claude --verbose -m deepseek/deepseek-v4-flash:free -p 'Who is your model maker?' ",
|
|
30
|
+
"launch:claude-with-anthropic-gateway": "npm run dev -- launch claude --verbose -m claude-haiku-4-5 -p 'Who is your model maker?' ",
|
|
31
|
+
"launch:codex-auth-status": "export CODEX_HOME=~/.falcon/codex && npm run dev -- launch codex -m auto login status",
|
|
32
|
+
"launch:codex-it": "export CODEX_HOME=~/.falcon/codex && npm run dev -- launch codex -m deepseek/deepseek-v4-flash:free"
|
|
33
|
+
},
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@maximhq/bifrost": "1.6.3",
|
|
36
|
+
"chalk": "^5.6.2",
|
|
37
|
+
"commander": "^14.0.3",
|
|
38
|
+
"ink": "^7.0.3",
|
|
39
|
+
"ink-text-input": "^6.0.0",
|
|
40
|
+
"react": "^19.2.6"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@biomejs/biome": "2.4.15",
|
|
44
|
+
"@types/node": "^25.9.1",
|
|
45
|
+
"@types/react": "^19.2.15",
|
|
46
|
+
"tsup": "^8.5.1",
|
|
47
|
+
"tsx": "^4.22.3",
|
|
48
|
+
"typescript": "^6.0.3"
|
|
49
|
+
}
|
|
50
|
+
}
|