10172f11b0
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.
25 lines
417 B
JSON
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"
|
|
}
|
|
}
|