@orkestrel/interpret 0.0.4 → 0.0.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orkestrel/interpret",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "description": "A typed interpretation engine: managers, stages, and a narrator that render reason definitions, subjects, and results as natural language. Part of the @orkestrel line.",
5
5
  "keywords": [
6
6
  "interpret",
@@ -48,6 +48,7 @@
48
48
  "clean": "node -e \"try{require('node:fs').rmSync('dist',{recursive:true,force:true})}catch{}\"",
49
49
  "copy": "node -e \"const fs=require('node:fs'),p=require('node:path'),a=process.argv[1],b=process.argv[2];fs.mkdirSync(p.dirname(b),{recursive:true});fs.cpSync(a,b,{force:true});console.log('Copied: '+a+' to '+b)\"",
50
50
  "tmp:txt": "node -e \"const fs=require('node:fs'),p=require('node:path');function walk(d){for(const e of fs.readdirSync(d,{withFileTypes:true})){const f=p.join(d,e.name);if(e.isDirectory()){walk(f)}else if(!e.name.endsWith('.md')&&!e.name.endsWith('.txt')){const t=f+'.txt';if(!fs.existsSync(t)){fs.renameSync(f,t)}else{console.warn('Skipping '+f+' — target exists: '+t)}}}}try{walk('tmp')}catch(e){if(e.code!=='ENOENT')throw e}\"",
51
+ "scaffold": "bash scripts/scaffold.sh",
51
52
  "lint": "oxlint --config .oxlintrc.json --fix .",
52
53
  "check": "tsc --noEmit --project tsconfig.json && npm run check:src",
53
54
  "check:src": "npm run check:src:core",
@@ -67,7 +68,8 @@
67
68
  "dependencies": {
68
69
  "@orkestrel/contract": "^0.0.5",
69
70
  "@orkestrel/emitter": "^0.0.3",
70
- "@orkestrel/reason": "^0.0.3"
71
+ "@orkestrel/reason": "^0.0.3",
72
+ "@orkestrel/template": "^0.0.1"
71
73
  },
72
74
  "devDependencies": {
73
75
  "@microsoft/api-extractor": "^7.58.11",