futurex-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/README.md +66 -0
- package/dist/index.js +7216 -0
- package/dist/index.js.map +7 -0
- package/package.json +66 -0
package/package.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "futurex-cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "FutureX — terminal-native AI coding agent (DeepSeek-backed). A streaming, repo-aware REPL plus an agentic tool loop with permission gates.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "UNLICENSED",
|
|
7
|
+
"bin": {
|
|
8
|
+
"futurex": "./dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"main": "./dist/index.js",
|
|
11
|
+
"files": [
|
|
12
|
+
"dist",
|
|
13
|
+
"README.md"
|
|
14
|
+
],
|
|
15
|
+
"publishConfig": {
|
|
16
|
+
"access": "public"
|
|
17
|
+
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"ai",
|
|
20
|
+
"coding-agent",
|
|
21
|
+
"cli",
|
|
22
|
+
"deepseek",
|
|
23
|
+
"futurex",
|
|
24
|
+
"terminal",
|
|
25
|
+
"repl"
|
|
26
|
+
],
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "git+https://github.com/futureist/fim.git",
|
|
30
|
+
"directory": "apps/futurex-cli"
|
|
31
|
+
},
|
|
32
|
+
"homepage": "https://futureist.io",
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"date-fns": "^4.1.0",
|
|
35
|
+
"nanoid": "^5.0.7",
|
|
36
|
+
"pino": "^9.4.0",
|
|
37
|
+
"pino-pretty": "^11.2.2",
|
|
38
|
+
"typescript": "^5.6.2",
|
|
39
|
+
"zod": "^3.23.8"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@types/node": "^22.5.0",
|
|
43
|
+
"esbuild": "^0.25.0",
|
|
44
|
+
"rimraf": "^6.0.1",
|
|
45
|
+
"tsx": "^4.19.1",
|
|
46
|
+
"vitest": "^2.1.9",
|
|
47
|
+
"@fim/ai-sdk": "0.1.0",
|
|
48
|
+
"@fim/futurex-context": "0.1.0",
|
|
49
|
+
"@fim/futurex-tools": "0.1.0",
|
|
50
|
+
"@fim/futurex-protocol": "0.1.0",
|
|
51
|
+
"@fim/futurex-vector": "0.1.0"
|
|
52
|
+
},
|
|
53
|
+
"engines": {
|
|
54
|
+
"node": ">=20.0.0"
|
|
55
|
+
},
|
|
56
|
+
"scripts": {
|
|
57
|
+
"cli": "tsx --env-file-if-exists=../../.env src/index.ts",
|
|
58
|
+
"dev": "tsx watch --env-file-if-exists=../../.env src/index.ts",
|
|
59
|
+
"build": "node build.mjs",
|
|
60
|
+
"start": "node dist/index.js",
|
|
61
|
+
"clean": "rimraf dist .turbo *.tsbuildinfo",
|
|
62
|
+
"lint": "eslint \"src/**/*.ts\"",
|
|
63
|
+
"typecheck": "tsc --noEmit",
|
|
64
|
+
"test": "vitest run"
|
|
65
|
+
}
|
|
66
|
+
}
|