Files
Move/package.json
T
nokeo08 1ad724cd33 Release 1.3.3
install.sh now installs the newest published tag by default instead of
tracking the master branch, so 'curl ... | sh' installs a real release and
reports its version. The tag is resolved from the Gitea tags API, falling
back to master if the lookup fails. MOVE_VERSION still pins an explicit ref.
2026-08-17 10:58:26 -05:00

25 lines
417 B
JSON

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