rulvar 1.3.2 → 1.5.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.
Files changed (3) hide show
  1. package/index.d.ts +3 -0
  2. package/index.js +3 -3
  3. package/package.json +9 -5
package/index.d.ts ADDED
@@ -0,0 +1,3 @@
1
+ // Type surface of the alias: identical to @rulvar/rulvar, so strict
2
+ // TypeScript consumers of the bare name compile without configuration.
3
+ export * from '@rulvar/rulvar';
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- // The bare name is an alias: the canonical package is @rulvar/rulvar
2
- // (docs/13, section "Naming note"). This re-export keeps
3
- // `npm install rulvar` working and the name reserved.
1
+ // The bare name is an alias: the canonical package is @rulvar/rulvar.
2
+ // This re-export keeps `npm install rulvar` working and the name
3
+ // reserved for the project.
4
4
  export * from '@rulvar/rulvar';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rulvar",
3
- "version": "1.3.2",
3
+ "version": "1.5.0",
4
4
  "description": "Pointer to the rulvar umbrella package: install @rulvar/rulvar (or this alias, which re-exports it). An embeddable TypeScript engine for durable, budget-bounded, testable multi-agent LLM workflows.",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -8,15 +8,19 @@
8
8
  "node": ">=22.12.0"
9
9
  },
10
10
  "exports": {
11
- ".": "./index.js",
11
+ ".": {
12
+ "types": "./index.d.ts",
13
+ "default": "./index.js"
14
+ },
12
15
  "./package.json": "./package.json"
13
16
  },
14
17
  "files": [
15
- "index.js"
18
+ "index.js",
19
+ "index.d.ts"
16
20
  ],
17
21
  "sideEffects": false,
18
22
  "dependencies": {
19
- "@rulvar/rulvar": "^1.3.2"
23
+ "@rulvar/rulvar": "^1.5.0"
20
24
  },
21
25
  "repository": {
22
26
  "type": "git",
@@ -34,4 +38,4 @@
34
38
  "durable-execution",
35
39
  "typescript"
36
40
  ]
37
- }
41
+ }