@phaseo/agent-sdk 0.1.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 ADDED
@@ -0,0 +1,5 @@
1
+ # Phaseo Agent SDK
2
+
3
+ Phaseo is the new name for AI Stats.
4
+
5
+ This package reserves `@phaseo/agent-sdk` and re-exports the current implementation from `@ai-stats/agent-sdk` during the package migration.
@@ -0,0 +1 @@
1
+ export * from "@ai-stats/agent-sdk";
package/dist/index.js ADDED
@@ -0,0 +1 @@
1
+ export * from "@ai-stats/agent-sdk";
package/package.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "@phaseo/agent-sdk",
3
+ "version": "0.1.1",
4
+ "description": "Phaseo Agent SDK transition package.",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "main": "./dist/index.js",
8
+ "module": "./dist/index.js",
9
+ "types": "./dist/index.d.ts",
10
+ "exports": {
11
+ ".": {
12
+ "types": "./dist/index.d.ts",
13
+ "import": "./dist/index.js"
14
+ }
15
+ },
16
+ "files": [
17
+ "dist",
18
+ "README.md"
19
+ ],
20
+ "dependencies": {
21
+ "@ai-stats/agent-sdk": "0.1.1"
22
+ },
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "git+https://github.com/phaseoteam/Phaseo.git"
26
+ },
27
+ "publishConfig": {
28
+ "access": "public"
29
+ }
30
+ }