@just-every/ensemble 0.1.32 → 0.1.33

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 (3) hide show
  1. package/package.json +4 -2
  2. package/test.d.ts +3 -0
  3. package/test.js +4 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@just-every/ensemble",
3
- "version": "0.1.32",
3
+ "version": "0.1.33",
4
4
  "description": "LLM provider abstraction layer with unified streaming interface",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -8,7 +8,9 @@
8
8
  "files": [
9
9
  "dist",
10
10
  "package.json",
11
- "README.md"
11
+ "README.md",
12
+ "test.js",
13
+ "test.d.ts"
12
14
  ],
13
15
  "repository": {
14
16
  "type": "git",
package/test.d.ts ADDED
@@ -0,0 +1,3 @@
1
+ // Legacy Node.js module resolution compatibility file
2
+ // Re-export types from the compiled output
3
+ export * from './dist/test.js';
package/test.js ADDED
@@ -0,0 +1,4 @@
1
+ // Legacy Node.js module resolution compatibility file
2
+ // This file exists to support imports like '@just-every/ensemble/test'
3
+ // when using "moduleResolution": "node" in tsconfig.json
4
+ export * from './dist/test.js';