{ "name": "@jup-ag/cli", "version": "0.10.1", "license": "GPL-3.0", "repository": { "type": "git", "url": "git+https://github.com/jup-ag/cli.git" }, "type": "module", "bin": { "jup": "dist/index.js" }, "files": [ "dist/index.js", "docs", "llms.txt", "README.md" ], "engines": { "node": ">=20", "bun": ">=1" }, "scripts": { "dev": "bun run src/index.ts", "build": "bun build src/index.ts --outdir dist --target node --format esm --minify", "build:binary": "bash scripts/build.sh", "typecheck": "bunx tsc --noEmit", "fmt": "bunx prettier --write .", "fmt:check": "bunx prettier --check .", "lint": "bunx oxlint src", "test": "bun test", "ci": "bun run fmt:check && bun run lint && bun run typecheck && bun run test", "prepublishOnly": "bun run build" }, "dependencies": { "@scure/bip32": "^2.0.1", "@scure/bip39": "^2.0.1", "@solana-program/token": "^0.12.0", "@solana/keychain": "^1.1.0", "@solana/kit": "^6.7.0", "chalk": "^5.6.2", "cli-table3": "^0.6.5", "commander": "^14.0.3", "ky": "^1.14.3", "micro-key-producer": "^0.8.5" }, "devDependencies": { "@types/bun": "latest", "oxlint": "^1.53.0", "prettier": "^3.8.1", "typescript": "^5.9.3" } }