UNPKG

@tufjs/cli

Version:
66 lines (65 loc) 1.52 kB
{ "name": "@tufjs/cli", "version": "0.5.1", "description": "CLI for interacting with TUF repositories", "author": "bdehamer@github.com", "license": "MIT", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "tuf": "./bin/run" }, "files": [ "/bin", "/dist", "/oclif.manifest.json" ], "publishConfig": { "access": "public", "provenance": true }, "scripts": { "clean": "shx rm -rf dist", "prebuild": "npm run clean", "build": "tsc --build", "postpack": "shx rm -f oclif.manifest.json", "prepack": "npm run build && oclif manifest && npm run readme", "readme": "oclif readme --no-aliases && shx sed -i \"s/^_See code:.*$//g\" README.md" }, "repository": { "type": "git", "url": "git+https://github.com/theupdateframework/tuf-js.git" }, "bugs": { "url": "https://github.com/theupdateframework/tuf-js/issues" }, "homepage": "https://github.com/theupdateframework/tuf-js/tree/main/packages/cli#readme", "keywords": [ "tuf", "security", "cli" ], "dependencies": { "@oclif/color": "^1.0.13", "@oclif/core": "^4", "@oclif/plugin-help": "^6", "tuf-js": "5.0.1" }, "devDependencies": { "oclif": "^4.22.96", "shx": "^0.4.0", "tslib": "^2.8.1" }, "oclif": { "bin": "tuf", "dirname": "tuf", "commands": "./dist/commands", "plugins": [ "@oclif/plugin-help" ], "topicSeparator": " " }, "engines": { "node": "^20.17.0 || >=22.9.0" } }