@nilux-ai/code 1.0.14 → 1.0.16
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 +5 -4
- package/dist/cli.js +460 -459
- package/package.json +87 -87
package/package.json
CHANGED
|
@@ -1,87 +1,87 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@nilux-ai/code",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "An AI engineer that lives in your terminal — reads, writes, runs, and remembers across sessions.",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "dist/cli.js",
|
|
7
|
-
"bin": {
|
|
8
|
-
"nilux": "dist/cli.js"
|
|
9
|
-
},
|
|
10
|
-
"scripts": {
|
|
11
|
-
"dev": "tsx src/cli-entry.ts",
|
|
12
|
-
"build": "rm -rf dist && bun build src/cli-entry.ts --outfile dist/cli.js --target node --minify --external @vscode/ripgrep --external koffi",
|
|
13
|
-
"check": "tsc --noEmit"
|
|
14
|
-
},
|
|
15
|
-
"files": [
|
|
16
|
-
"dist"
|
|
17
|
-
],
|
|
18
|
-
"dependencies": {
|
|
19
|
-
"@vscode/ripgrep": "^1.17.0",
|
|
20
|
-
"koffi": "^3.1.0"
|
|
21
|
-
},
|
|
22
|
-
"devDependencies": {
|
|
23
|
-
"@types/cross-spawn": "^6.0.6",
|
|
24
|
-
"@types/diff-match-patch": "^1.0.36",
|
|
25
|
-
"@types/node": "^24.3.0",
|
|
26
|
-
"@types/react": "^19.2.7",
|
|
27
|
-
"@types/react-reconciler": "^0.33.0",
|
|
28
|
-
"@types/ws": "^8.18.1",
|
|
29
|
-
"@vscode/ripgrep": "^1.17.0",
|
|
30
|
-
"chalk": "^5.6.2",
|
|
31
|
-
"chokidar": "^3.5.3",
|
|
32
|
-
"commander": "^14.0.2",
|
|
33
|
-
"cross-spawn": "^7.0.6",
|
|
34
|
-
"diff-match-patch": "^1.0.5",
|
|
35
|
-
"eventsource-parser": "^3.0.6",
|
|
36
|
-
"find-up": "^7.0.0",
|
|
37
|
-
"glob": "^10.3.0",
|
|
38
|
-
"highlight.js": "^11.11.1",
|
|
39
|
-
"ink": "^6.6.0",
|
|
40
|
-
"ink-spinner": "^5.0.0",
|
|
41
|
-
"ink-text-input": "^6.0.0",
|
|
42
|
-
"react": "^19.2.3",
|
|
43
|
-
"react-devtools-core": "^6.1.5",
|
|
44
|
-
"react-reconciler": "^0.33.0",
|
|
45
|
-
"semidown": "^0.0.3",
|
|
46
|
-
"sql.js": "^1.14.1",
|
|
47
|
-
"tsx": "^4.20.5",
|
|
48
|
-
"typescript": "^5.9.2",
|
|
49
|
-
"web-tree-sitter": "^0.26.8",
|
|
50
|
-
"ws": "^8.17.0"
|
|
51
|
-
},
|
|
52
|
-
"engines": {
|
|
53
|
-
"node": ">=18.0.0"
|
|
54
|
-
},
|
|
55
|
-
"keywords": [
|
|
56
|
-
"ai",
|
|
57
|
-
"ai-agent",
|
|
58
|
-
"agentic",
|
|
59
|
-
"coding-agent",
|
|
60
|
-
"ai-coding-assistant",
|
|
61
|
-
"code-assistant",
|
|
62
|
-
"cli",
|
|
63
|
-
"terminal",
|
|
64
|
-
"developer-tools",
|
|
65
|
-
"devtools",
|
|
66
|
-
"pair-programming",
|
|
67
|
-
"llm",
|
|
68
|
-
"code-generation",
|
|
69
|
-
"refactoring",
|
|
70
|
-
"mcp",
|
|
71
|
-
"model-context-protocol",
|
|
72
|
-
"nilux"
|
|
73
|
-
],
|
|
74
|
-
"author": "Nilux",
|
|
75
|
-
"license": "Apache-2.0",
|
|
76
|
-
"homepage": "https://nilux.dev",
|
|
77
|
-
"repository": {
|
|
78
|
-
"type": "git",
|
|
79
|
-
"url": "git+https://github.com/nilux-dev/nilux.git"
|
|
80
|
-
},
|
|
81
|
-
"bugs": {
|
|
82
|
-
"url": "https://github.com/nilux-dev/nilux/issues"
|
|
83
|
-
},
|
|
84
|
-
"publishConfig": {
|
|
85
|
-
"access": "public"
|
|
86
|
-
}
|
|
87
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@nilux-ai/code",
|
|
3
|
+
"version": "1.0.16",
|
|
4
|
+
"description": "An AI engineer that lives in your terminal — reads, writes, runs, and remembers across sessions.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/cli.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"nilux": "dist/cli.js"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"dev": "tsx src/cli-entry.ts",
|
|
12
|
+
"build": "rm -rf dist && bun build src/cli-entry.ts --outfile dist/cli.js --target node --minify --external @vscode/ripgrep --external koffi",
|
|
13
|
+
"check": "tsc --noEmit"
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"dependencies": {
|
|
19
|
+
"@vscode/ripgrep": "^1.17.0",
|
|
20
|
+
"koffi": "^3.1.0"
|
|
21
|
+
},
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"@types/cross-spawn": "^6.0.6",
|
|
24
|
+
"@types/diff-match-patch": "^1.0.36",
|
|
25
|
+
"@types/node": "^24.3.0",
|
|
26
|
+
"@types/react": "^19.2.7",
|
|
27
|
+
"@types/react-reconciler": "^0.33.0",
|
|
28
|
+
"@types/ws": "^8.18.1",
|
|
29
|
+
"@vscode/ripgrep": "^1.17.0",
|
|
30
|
+
"chalk": "^5.6.2",
|
|
31
|
+
"chokidar": "^3.5.3",
|
|
32
|
+
"commander": "^14.0.2",
|
|
33
|
+
"cross-spawn": "^7.0.6",
|
|
34
|
+
"diff-match-patch": "^1.0.5",
|
|
35
|
+
"eventsource-parser": "^3.0.6",
|
|
36
|
+
"find-up": "^7.0.0",
|
|
37
|
+
"glob": "^10.3.0",
|
|
38
|
+
"highlight.js": "^11.11.1",
|
|
39
|
+
"ink": "^6.6.0",
|
|
40
|
+
"ink-spinner": "^5.0.0",
|
|
41
|
+
"ink-text-input": "^6.0.0",
|
|
42
|
+
"react": "^19.2.3",
|
|
43
|
+
"react-devtools-core": "^6.1.5",
|
|
44
|
+
"react-reconciler": "^0.33.0",
|
|
45
|
+
"semidown": "^0.0.3",
|
|
46
|
+
"sql.js": "^1.14.1",
|
|
47
|
+
"tsx": "^4.20.5",
|
|
48
|
+
"typescript": "^5.9.2",
|
|
49
|
+
"web-tree-sitter": "^0.26.8",
|
|
50
|
+
"ws": "^8.17.0"
|
|
51
|
+
},
|
|
52
|
+
"engines": {
|
|
53
|
+
"node": ">=18.0.0"
|
|
54
|
+
},
|
|
55
|
+
"keywords": [
|
|
56
|
+
"ai",
|
|
57
|
+
"ai-agent",
|
|
58
|
+
"agentic",
|
|
59
|
+
"coding-agent",
|
|
60
|
+
"ai-coding-assistant",
|
|
61
|
+
"code-assistant",
|
|
62
|
+
"cli",
|
|
63
|
+
"terminal",
|
|
64
|
+
"developer-tools",
|
|
65
|
+
"devtools",
|
|
66
|
+
"pair-programming",
|
|
67
|
+
"llm",
|
|
68
|
+
"code-generation",
|
|
69
|
+
"refactoring",
|
|
70
|
+
"mcp",
|
|
71
|
+
"model-context-protocol",
|
|
72
|
+
"nilux"
|
|
73
|
+
],
|
|
74
|
+
"author": "Nilux",
|
|
75
|
+
"license": "Apache-2.0",
|
|
76
|
+
"homepage": "https://nilux.dev",
|
|
77
|
+
"repository": {
|
|
78
|
+
"type": "git",
|
|
79
|
+
"url": "git+https://github.com/nilux-dev/nilux.git"
|
|
80
|
+
},
|
|
81
|
+
"bugs": {
|
|
82
|
+
"url": "https://github.com/nilux-dev/nilux/issues"
|
|
83
|
+
},
|
|
84
|
+
"publishConfig": {
|
|
85
|
+
"access": "public"
|
|
86
|
+
}
|
|
87
|
+
}
|