@ftarganski/omni-ai 1.1.6 → 1.1.7

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 (2) hide show
  1. package/dist/cli/bin.js +0 -0
  2. package/package.json +16 -18
package/dist/cli/bin.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ftarganski/omni-ai",
3
- "version": "1.1.6",
3
+ "version": "1.1.7",
4
4
  "description": "Provider-agnostic AI agents and skills framework",
5
5
  "type": "module",
6
6
  "exports": {
@@ -79,22 +79,7 @@
79
79
  "publishConfig": {
80
80
  "access": "public"
81
81
  },
82
- "scripts": {
83
- "build": "tsup",
84
- "dev": "tsup --watch",
85
- "lint": "biome check src/",
86
- "prepack": "node -e \"require('fs').copyFileSync('../../README.md', './README.md')\"",
87
- "postpack": "node -e \"try{require('fs').unlinkSync('./README.md')}catch(e){}\""
88
- },
89
82
  "dependencies": {
90
- "@omni-ai/cli": "workspace:*",
91
- "@omni-ai/core": "workspace:*",
92
- "@omni-ai/memory": "workspace:*",
93
- "@omni-ai/mcp": "workspace:*",
94
- "@omni-ai/provider-anthropic": "workspace:*",
95
- "@omni-ai/provider-google": "workspace:*",
96
- "@omni-ai/provider-openai": "workspace:*",
97
- "@omni-ai/skills": "workspace:*",
98
83
  "@inquirer/prompts": "^7.0.0",
99
84
  "chalk": "^5.3.0",
100
85
  "chokidar": "^4.0.0",
@@ -103,7 +88,15 @@
103
88
  "express": "^4.21.0",
104
89
  "glob": "^11.0.0",
105
90
  "yaml": "^2.7.0",
106
- "zod": "^3.24.0"
91
+ "zod": "^3.24.0",
92
+ "@omni-ai/cli": "0.1.0",
93
+ "@omni-ai/core": "0.1.0",
94
+ "@omni-ai/memory": "0.1.0",
95
+ "@omni-ai/mcp": "0.1.0",
96
+ "@omni-ai/provider-anthropic": "0.1.0",
97
+ "@omni-ai/provider-google": "0.1.0",
98
+ "@omni-ai/provider-openai": "0.1.0",
99
+ "@omni-ai/skills": "0.1.0"
107
100
  },
108
101
  "peerDependencies": {
109
102
  "@anthropic-ai/sdk": "^0.39.0",
@@ -135,5 +128,10 @@
135
128
  "@types/node": "^22.0.0",
136
129
  "tsup": "^8.0.0",
137
130
  "typescript": "^5.7.0"
131
+ },
132
+ "scripts": {
133
+ "build": "tsup",
134
+ "dev": "tsup --watch",
135
+ "lint": "biome check src/"
138
136
  }
139
- }
137
+ }