omni-context-cli 0.0.1
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 +3 -0
- package/dist/cli.js +97 -0
- package/package.json +50 -0
package/package.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "omni-context-cli",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Omx is a small, helpful, zero-telemetry coding assistant.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"omni-context-cli": "./dist/cli.js",
|
|
8
|
+
"omx": "./dist/cli.js"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"build": "node build.mjs",
|
|
12
|
+
"dev": "node build.mjs --watch",
|
|
13
|
+
"start": "node dist/cli.js",
|
|
14
|
+
"format": "dprint fmt",
|
|
15
|
+
"format:check": "dprint check"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"cli",
|
|
19
|
+
"ai",
|
|
20
|
+
"assistant"
|
|
21
|
+
],
|
|
22
|
+
"author": "bluenoah1991",
|
|
23
|
+
"license": "MIT",
|
|
24
|
+
"files": [
|
|
25
|
+
"dist"
|
|
26
|
+
],
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"figlet": "^1.8.0"
|
|
29
|
+
},
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"@commander-js/extra-typings": "^14.0.0",
|
|
32
|
+
"@modelcontextprotocol/sdk": "^1.25.1",
|
|
33
|
+
"@types/figlet": "^1.7.0",
|
|
34
|
+
"@types/marked": "^5.0.2",
|
|
35
|
+
"@types/node": "^25.0.3",
|
|
36
|
+
"@types/react": "^19.2.7",
|
|
37
|
+
"commander": "^14.0.2",
|
|
38
|
+
"dprint": "^0.50.2",
|
|
39
|
+
"esbuild": "^0.27.2",
|
|
40
|
+
"highlight.js": "^11.11.1",
|
|
41
|
+
"ink": "^6.5.1",
|
|
42
|
+
"javascript-obfuscator": "^5.1.0",
|
|
43
|
+
"marked": "^17.0.1",
|
|
44
|
+
"react": "^19.2.3",
|
|
45
|
+
"react-reconciler": "^0.33.0",
|
|
46
|
+
"string-width": "^8.1.0",
|
|
47
|
+
"typescript": "^5.9.3",
|
|
48
|
+
"zustand": "^5.0.8"
|
|
49
|
+
}
|
|
50
|
+
}
|