@orkestrel/interpret 0.0.1 → 0.0.2

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 (1) hide show
  1. package/package.json +12 -12
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orkestrel/interpret",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
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",
@@ -49,7 +49,7 @@
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
51
  "lint": "oxlint --config .oxlintrc.json --fix .",
52
- "check": "tsc --noEmit --project tsconfig.json",
52
+ "check": "tsc --noEmit --project tsconfig.json && npm run check:src",
53
53
  "check:src": "npm run check:src:core",
54
54
  "check:src:core": "tsc --noEmit -p configs/src/tsconfig.core.json",
55
55
  "format": "oxfmt --config .oxfmtrc.json --write .",
@@ -62,25 +62,25 @@
62
62
  "build": "npm run clean && npm run build:src",
63
63
  "build:src": "npm run build:src:core",
64
64
  "build:src:core": "vite build --config configs/src/vite.core.config.ts && npm run copy dist/src/core/index.d.ts dist/src/core/index.d.cts",
65
- "prepublishOnly": "npm run format:check && npm run lint:check && npm run check && npm run check:src && npm run build && npm test"
65
+ "prepublishOnly": "npm run format:check && npm run lint:check && npm run check && npm run build && npm test"
66
66
  },
67
67
  "dependencies": {
68
- "@orkestrel/contract": "^0.0.1",
69
- "@orkestrel/emitter": "^0.0.1",
70
- "@orkestrel/reason": "^0.0.1"
68
+ "@orkestrel/contract": "^0.0.2",
69
+ "@orkestrel/emitter": "^0.0.2",
70
+ "@orkestrel/reason": "^0.0.2"
71
71
  },
72
72
  "devDependencies": {
73
- "@microsoft/api-extractor": "^7.58.9",
74
- "@orkestrel/guide": "^0.0.1",
73
+ "@microsoft/api-extractor": "^7.58.11",
74
+ "@orkestrel/guide": "^0.0.2",
75
75
  "@types/node": "^26.1.1",
76
- "oxfmt": "^0.58.0",
77
- "oxlint": "^1.73.0",
76
+ "oxfmt": "^0.59.0",
77
+ "oxlint": "^1.74.0",
78
78
  "typescript": "^6.0.3",
79
- "vite": "^8.1.4",
79
+ "vite": "^8.1.5",
80
80
  "vite-plugin-dts": "^5.0.3",
81
81
  "vitest": "^4.1.10"
82
82
  },
83
83
  "engines": {
84
- "node": ">=24"
84
+ "node": ">=22"
85
85
  }
86
86
  }