@nilux-ai/code 1.0.10

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.
Files changed (4) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +48 -0
  3. package/dist/cli.js +1039 -0
  4. package/package.json +64 -0
package/package.json ADDED
@@ -0,0 +1,64 @@
1
+ {
2
+ "name": "@nilux-ai/code",
3
+ "version": "1.0.10",
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/diff-match-patch": "^1.0.36",
24
+ "@types/node": "^24.3.0",
25
+ "@types/react": "^19.2.7",
26
+ "@types/react-reconciler": "^0.33.0",
27
+ "@types/ws": "^8.18.1",
28
+ "@vscode/ripgrep": "^1.17.0",
29
+ "chokidar": "^3.5.3",
30
+ "commander": "^14.0.2",
31
+ "diff-match-patch": "^1.0.5",
32
+ "eventsource-parser": "^3.0.6",
33
+ "find-up": "^7.0.0",
34
+ "glob": "^10.3.0",
35
+ "highlight.js": "^11.11.1",
36
+ "ink": "^6.6.0",
37
+ "ink-spinner": "^5.0.0",
38
+ "ink-text-input": "^6.0.0",
39
+ "react": "^19.2.3",
40
+ "react-devtools-core": "^6.1.5",
41
+ "react-reconciler": "^0.33.0",
42
+ "semidown": "^0.0.3",
43
+ "sql.js": "^1.14.1",
44
+ "tsx": "^4.20.5",
45
+ "typescript": "^5.9.2",
46
+ "web-tree-sitter": "^0.26.8",
47
+ "ws": "^8.17.0"
48
+ },
49
+ "engines": {
50
+ "node": ">=18.0.0"
51
+ },
52
+ "keywords": [
53
+ "ai",
54
+ "code-assistant",
55
+ "cli",
56
+ "nilux"
57
+ ],
58
+ "author": "Nilux",
59
+ "license": "Apache-2.0",
60
+ "homepage": "https://nilux.dev",
61
+ "bugs": {
62
+ "url": "https://nilux.dev/feedback"
63
+ }
64
+ }