@elpapi42/pi-fleet-sdk 0.1.0

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,9 @@
1
+ # @elpapi42/pi-fleet-sdk
2
+
3
+ The pi-fleet SDK package. Its public agent API starts in Slice 1.
4
+
5
+ ```bash
6
+ npm install @elpapi42/pi-fleet-sdk
7
+ ```
8
+
9
+ The package currently exports `version` as a packaging smoke-test surface. This is not the final SDK API.
@@ -0,0 +1,6 @@
1
+ /**
2
+ * The public pi-fleet SDK surface will start with Slice 1.
3
+ * Private runtime code belongs in src/internal when that slice needs it.
4
+ */
5
+ export declare const version = "0.1.0";
6
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,eAAO,MAAM,OAAO,UAAU,CAAA"}
package/dist/index.js ADDED
@@ -0,0 +1,6 @@
1
+ /**
2
+ * The public pi-fleet SDK surface will start with Slice 1.
3
+ * Private runtime code belongs in src/internal when that slice needs it.
4
+ */
5
+ export const version = "0.1.0";
6
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,MAAM,CAAC,MAAM,OAAO,GAAG,OAAO,CAAA"}
package/package.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "@elpapi42/pi-fleet-sdk",
3
+ "version": "0.1.0",
4
+ "description": "SDK for durable, host-local Pi agents",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/elpapi42/pi-fleet-v2.git",
9
+ "directory": "packages/sdk"
10
+ },
11
+ "type": "module",
12
+ "engines": {
13
+ "node": ">=22"
14
+ },
15
+ "exports": {
16
+ ".": {
17
+ "types": "./dist/index.d.ts",
18
+ "import": "./dist/index.js"
19
+ }
20
+ },
21
+ "types": "./dist/index.d.ts",
22
+ "files": [
23
+ "dist",
24
+ "README.md"
25
+ ],
26
+ "scripts": {
27
+ "build": "tsc --project tsconfig.json",
28
+ "test": "node --test test/*.test.mjs"
29
+ }
30
+ }