poe-code 3.0.158 → 3.0.159
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/index.js +23 -1
- package/dist/index.js.map +2 -2
- package/package.json +23 -1
package/dist/index.js
CHANGED
|
@@ -33374,11 +33374,33 @@ var init_package = __esm({
|
|
|
33374
33374
|
"package.json"() {
|
|
33375
33375
|
package_default = {
|
|
33376
33376
|
name: "poe-code",
|
|
33377
|
-
version: "3.0.
|
|
33377
|
+
version: "3.0.159",
|
|
33378
33378
|
description: "CLI tool to configure Poe API for developer workflows.",
|
|
33379
33379
|
type: "module",
|
|
33380
33380
|
main: "./dist/index.js",
|
|
33381
33381
|
types: "./dist/index.d.ts",
|
|
33382
|
+
exports: {
|
|
33383
|
+
".": {
|
|
33384
|
+
types: "./dist/index.d.ts",
|
|
33385
|
+
import: "./dist/index.js"
|
|
33386
|
+
},
|
|
33387
|
+
"./cmdkit": {
|
|
33388
|
+
types: "./packages/cmdkit/dist/index.d.ts",
|
|
33389
|
+
import: "./packages/cmdkit/dist/index.js"
|
|
33390
|
+
},
|
|
33391
|
+
"./cmdkit/cli": {
|
|
33392
|
+
types: "./packages/cmdkit/dist/cli.d.ts",
|
|
33393
|
+
import: "./packages/cmdkit/dist/cli.js"
|
|
33394
|
+
},
|
|
33395
|
+
"./cmdkit/mcp": {
|
|
33396
|
+
types: "./packages/cmdkit/dist/mcp.d.ts",
|
|
33397
|
+
import: "./packages/cmdkit/dist/mcp.js"
|
|
33398
|
+
},
|
|
33399
|
+
"./cmdkit/sdk": {
|
|
33400
|
+
types: "./packages/cmdkit/dist/sdk.d.ts",
|
|
33401
|
+
import: "./packages/cmdkit/dist/sdk.js"
|
|
33402
|
+
}
|
|
33403
|
+
},
|
|
33382
33404
|
workspaces: [
|
|
33383
33405
|
"packages/*"
|
|
33384
33406
|
],
|