@tufjs/cli
Version:
CLI for interacting with TUF repositories
68 lines (67 loc) • 1.59 kB
JSON
{
"name": "@tufjs/cli",
"version": "0.4.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",
"make-fetch-happen": "^15.0.1",
"tuf-js": "4.1.0"
},
"devDependencies": {
"@types/make-fetch-happen": "^10.0.4",
"oclif": "^4",
"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"
}
}