omnikey-cli 1.0.1 → 1.0.3
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 +1 -1
- package/package.json +8 -2
- package/.github/copilot-instructions.md +0 -3
- package/tsconfig.json +0 -12
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@ OmnikeyAI is a productivity tool for macOS that helps you quickly rewrite select
|
|
|
19
19
|
|
|
20
20
|
```sh
|
|
21
21
|
# Install CLI globally (from this directory)
|
|
22
|
-
npm install -g
|
|
22
|
+
npm install -g omnikey-cli
|
|
23
23
|
|
|
24
24
|
# Onboard interactively (will prompt for OpenAI key and self-hosting)
|
|
25
25
|
omnikey onboard
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"access": "public",
|
|
5
5
|
"registry": "https://registry.npmjs.org/"
|
|
6
6
|
},
|
|
7
|
-
"version": "1.0.
|
|
7
|
+
"version": "1.0.3",
|
|
8
8
|
"description": "CLI for onboarding users to Omnikey AI and configuring OPENAI_API_KEY. Use Yarn for install/build.",
|
|
9
9
|
"engines": {
|
|
10
10
|
"node": ">=14.0.0",
|
|
@@ -37,5 +37,11 @@
|
|
|
37
37
|
"repository": {
|
|
38
38
|
"type": "git",
|
|
39
39
|
"url": "git+https://github.com/GurinderRawala/OmniKey-AI.git"
|
|
40
|
-
}
|
|
40
|
+
},
|
|
41
|
+
"files": [
|
|
42
|
+
"dist",
|
|
43
|
+
"backend-dist",
|
|
44
|
+
"src",
|
|
45
|
+
"README.md"
|
|
46
|
+
]
|
|
41
47
|
}
|
package/tsconfig.json
DELETED