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 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.1",
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
  }
@@ -1,3 +0,0 @@
1
- Work through each checklist item systematically.
2
- Keep communication concise and focused.
3
- Follow development best practices.
package/tsconfig.json DELETED
@@ -1,12 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "target": "ES2020",
4
- "module": "CommonJS",
5
- "outDir": "dist",
6
- "rootDir": "src",
7
- "strict": true,
8
- "esModuleInterop": true,
9
- "forceConsistentCasingInFileNames": true
10
- },
11
- "include": ["src/**/*"]
12
- }