niumagents-cli 0.1.10 → 0.1.12
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/dist/nium.js +1100 -236
- package/package.json +94 -97
package/package.json
CHANGED
|
@@ -1,97 +1,94 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "niumagents-cli",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "AI Code Agent",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "dist/nium.js",
|
|
7
|
-
"bin": {
|
|
8
|
-
"nium": "bin/nium"
|
|
9
|
-
},
|
|
10
|
-
"preferGlobal": true,
|
|
11
|
-
"files": [
|
|
12
|
-
"dist/**/*.js",
|
|
13
|
-
"dist/**/*.json",
|
|
14
|
-
"dist/**/*.example",
|
|
15
|
-
"dist/**/*.LICENSE.txt",
|
|
16
|
-
"bin/",
|
|
17
|
-
"README.md",
|
|
18
|
-
".niumignore"
|
|
19
|
-
],
|
|
20
|
-
"scripts": {
|
|
21
|
-
"start": "tsx nium.ts",
|
|
22
|
-
"
|
|
23
|
-
"build": "
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
|
|
48
|
-
"
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
"
|
|
52
|
-
"cli"
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
"niumagents-cli"
|
|
56
|
-
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
"
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
"@
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
"
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
"
|
|
90
|
-
"
|
|
91
|
-
"
|
|
92
|
-
"
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
"typescript-eslint": "^8.46.4"
|
|
96
|
-
}
|
|
97
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "niumagents-cli",
|
|
3
|
+
"version": "0.1.12",
|
|
4
|
+
"description": "AI Code Agent",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/nium.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"nium": "bin/nium"
|
|
9
|
+
},
|
|
10
|
+
"preferGlobal": true,
|
|
11
|
+
"files": [
|
|
12
|
+
"dist/**/*.js",
|
|
13
|
+
"dist/**/*.json",
|
|
14
|
+
"dist/**/*.example",
|
|
15
|
+
"dist/**/*.LICENSE.txt",
|
|
16
|
+
"bin/",
|
|
17
|
+
"README.md",
|
|
18
|
+
".niumignore"
|
|
19
|
+
],
|
|
20
|
+
"scripts": {
|
|
21
|
+
"start": "tsx nium.ts",
|
|
22
|
+
"build": "npm run clean && npm run write:version && npm run build:bundle && npm run copy:examples",
|
|
23
|
+
"build:bundle": "node build.js",
|
|
24
|
+
"clean": "rimraf dist",
|
|
25
|
+
"copy:examples": "node scripts/copy-examples.js",
|
|
26
|
+
"write:version": "node scripts/write-version.js",
|
|
27
|
+
"dev": "tsx watch nium.ts",
|
|
28
|
+
"typecheck": "tsc --noEmit",
|
|
29
|
+
"lint": "eslint . --ext .ts,.js",
|
|
30
|
+
"lint:fix": "eslint . --ext .ts,.js --fix",
|
|
31
|
+
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
|
|
32
|
+
"format:check": "prettier --check \"**/*.{ts,js,json,md}\"",
|
|
33
|
+
"verify": "node scripts/quick-verify.js",
|
|
34
|
+
"verify:full": "node scripts/verify-pack.js",
|
|
35
|
+
"verify:global": "node scripts/test-global-install.js",
|
|
36
|
+
"prepublishOnly": "node publish.js",
|
|
37
|
+
"prepack": "npm run build"
|
|
38
|
+
},
|
|
39
|
+
"keywords": [
|
|
40
|
+
"ai",
|
|
41
|
+
"code-agent",
|
|
42
|
+
"react",
|
|
43
|
+
"cli",
|
|
44
|
+
"assistant",
|
|
45
|
+
"nium",
|
|
46
|
+
"niumagents-cli"
|
|
47
|
+
],
|
|
48
|
+
"author": "niuma996",
|
|
49
|
+
"license": "MIT",
|
|
50
|
+
"repository": {
|
|
51
|
+
"type": "git",
|
|
52
|
+
"url": "git+https://github.com/niuma996/niumagents-cli.git"
|
|
53
|
+
},
|
|
54
|
+
"bugs": {
|
|
55
|
+
"url": "https://github.com/niuma996/niumagents-cli/issues"
|
|
56
|
+
},
|
|
57
|
+
"homepage": "https://github.com/niuma996/niumagents-cli#readme",
|
|
58
|
+
"dependencies": {
|
|
59
|
+
"@anthropic-ai/sdk": "^0.71.0",
|
|
60
|
+
"@modelcontextprotocol/sdk": "^1.23.0",
|
|
61
|
+
"@types/xml2js": "^0.4.14",
|
|
62
|
+
"chalk": "^5.3.0",
|
|
63
|
+
"diff": "^7.0.0",
|
|
64
|
+
"eventsource": "^4.0.0",
|
|
65
|
+
"fuzzysort": "^3.1.0",
|
|
66
|
+
"glob": "^13.0.0",
|
|
67
|
+
"iconv-lite": "^0.7.0",
|
|
68
|
+
"ink": "^6.5.1",
|
|
69
|
+
"ink-spinner": "^5.0.0",
|
|
70
|
+
"ink-text-input": "^6.0.0",
|
|
71
|
+
"node-diff3": "^3.2.0",
|
|
72
|
+
"openai": "^6.9.1",
|
|
73
|
+
"react": "^19.2.1",
|
|
74
|
+
"xml2js": "^0.6.2",
|
|
75
|
+
"zustand": "^5.0.9"
|
|
76
|
+
},
|
|
77
|
+
"devDependencies": {
|
|
78
|
+
"@types/diff": "^7.0.2",
|
|
79
|
+
"@types/node": "^24.9.1",
|
|
80
|
+
"@types/react": "^18.3.27",
|
|
81
|
+
"@typescript-eslint/eslint-plugin": "^8.46.3",
|
|
82
|
+
"@typescript-eslint/parser": "^8.46.3",
|
|
83
|
+
"copyfiles": "^2.4.1",
|
|
84
|
+
"esbuild": "^0.27.0",
|
|
85
|
+
"eslint": "^9.39.1",
|
|
86
|
+
"eslint-config-prettier": "^9.1.2",
|
|
87
|
+
"eslint-plugin-prettier": "^5.5.4",
|
|
88
|
+
"prettier": "^3.6.2",
|
|
89
|
+
"rimraf": "^6.1.0",
|
|
90
|
+
"tsx": "^4.20.6",
|
|
91
|
+
"typescript": "^5.9.3",
|
|
92
|
+
"typescript-eslint": "^8.46.4"
|
|
93
|
+
}
|
|
94
|
+
}
|