@orkestrel/console 0.0.1 → 0.0.3

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 +11 -11
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orkestrel/console",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "description": "A typed console/terminal output toolkit for the @orkestrel line — logging, spinners, progress, and capture. Part of the @orkestrel line.",
5
5
  "keywords": [
6
6
  "ansi",
@@ -63,7 +63,7 @@
63
63
  "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)\"",
64
64
  "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}\"",
65
65
  "lint": "oxlint --config .oxlintrc.json --fix .",
66
- "check": "tsc --noEmit --project tsconfig.json",
66
+ "check": "tsc --noEmit --project tsconfig.json && npm run check:src",
67
67
  "check:src": "npm run check:src:core && npm run check:src:browser && npm run check:src:server",
68
68
  "check:src:core": "tsc --noEmit -p configs/src/tsconfig.core.json",
69
69
  "check:src:browser": "tsc --noEmit -p configs/src/tsconfig.browser.json",
@@ -82,25 +82,25 @@
82
82
  "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",
83
83
  "build:src:browser": "vite build --config configs/src/vite.browser.config.ts",
84
84
  "build:src:server": "vite build --config configs/src/vite.server.config.ts && npm run copy dist/src/server/index.d.ts dist/src/server/index.d.cts",
85
- "prepublishOnly": "npm run format:check && npm run lint:check && npm run check && npm run check:src && npm run build && npm test"
85
+ "prepublishOnly": "npm run format:check && npm run lint:check && npm run check && npm run build && npm test"
86
86
  },
87
87
  "dependencies": {
88
- "@orkestrel/contract": "^0.0.1",
89
- "@orkestrel/emitter": "^0.0.1"
88
+ "@orkestrel/contract": "^0.0.5",
89
+ "@orkestrel/emitter": "^0.0.3"
90
90
  },
91
91
  "devDependencies": {
92
- "@microsoft/api-extractor": "^7.58.9",
93
- "@orkestrel/guide": "^0.0.1",
92
+ "@microsoft/api-extractor": "^7.58.11",
93
+ "@orkestrel/guide": "^0.0.5",
94
94
  "@types/node": "^26.1.1",
95
95
  "@vitest/browser-playwright": "^4.1.10",
96
- "oxfmt": "^0.58.0",
97
- "oxlint": "^1.73.0",
96
+ "oxfmt": "^0.59.0",
97
+ "oxlint": "^1.74.0",
98
98
  "typescript": "^6.0.3",
99
- "vite": "^8.1.4",
99
+ "vite": "^8.1.5",
100
100
  "vite-plugin-dts": "^5.0.3",
101
101
  "vitest": "^4.1.10"
102
102
  },
103
103
  "engines": {
104
- "node": ">=24"
104
+ "node": ">=22"
105
105
  }
106
106
  }