Files
Move/package.json
T
nokeo08 10172f11b0 Bump package.json to 1.1.1 to match next release tag
The CLI reads its version string from package.json at runtime, so
'move --version' was printing 1.0.0 even after the v1.1.0 tag landed.
Bumping the manifest here so v1.1.1 (carrying the tests/ move and the
TS LSP fix) ships with matching output:

  $ move --version
  move 1.1.1

Discipline going forward: bump package.json BEFORE creating a tag.
2026-06-17 21:45:00 -05:00

25 lines
417 B
JSON

{
"name": "move",
"version": "1.1.1",
"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"
}
}