Files
Move/package.json
nokeo08 cff1c482a3 v1.2.0
Notable changes since v1.1.1:
- New -e/--edit flag opens the active config file in $EDITOR.
- Lazy import of keeper.ts so --help and --version skip the nut.js
  native load on cold start.
- Various audit cleanups: failRuntime() mirror, named Logger interface,
  errors.ts module, autoDelayMs moved out of module-load side effects,
  defaultConfigPath guards against unset HOME, noUncheckedIndexedAccess
  enabled in tsconfig.
- Added Bun test suite (34 tests across resolveConfig, loadConfigFile,
  editConfig).
- scripts/dev-setup.sh made POSIX-portable.
2026-06-17 22:20:59 -05:00

25 lines
417 B
JSON

{
"name": "move",
"version": "1.2.0",
"private": true,
"license": "GPL-3.0-only",
"type": "module",
"bin": {
"move": "./src/move.ts"
},
"engines": {
"bun": ">=1.0.0"
},
"scripts": {
"start": "bun run src/move.ts",
"test": "bun test"
},
"dependencies": {
"@nut-tree-fork/nut-js": "^4.2.2"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5"
}
}