{
  "name": "opcua-commander",
  "version": "1.2.5",
  "type": "module",
  "description": "OPCUA CLI client",
  "main": "bin/bundle.cjs",
  "files": [
    "bin/opcua-commander.js",
    "bin/bundle.cjs",
    "bin/usr"
  ],
  "keywords": [
    "opcua",
    "iot",
    "iiot",
    "cli",
    "curses",
    "blessed"
  ],
  "scripts": {
    "build": "tsc -b && npm run bundle",
    "bundle": "node scratch/patch-blessed.cjs && tsup && node scratch/post-bundle.cjs",
    "test-server": "node test-bed/server.cjs",
    "release": "npm run build && npm run bundle && npx release-it --npm.publish=false",
    "release:patch": "npm run build && npm run bundle && npx release-it patch --ci --npm.publish=false",
    "release:minor": "npm run build && npm run bundle && npx release-it minor --ci --npm.publish=false",
    "release:major": "npm run build && npm run bundle && npx release-it major --ci --npm.publish=false",
    "test": "vitest run",
    "ncu": "npx npm-check-updates -u -x chalk,yargs,env-paths,update-notifier,camel-case,cli-truncate",
    "start": "node bin/opcua-commander",
    "demo:secure": "node bin/opcua-commander -e opc.tcp://opcuademo.sterfive.com:26543 -s=SignAndEncrypt -P=Aes128_Sha256_RsaOaep -u=user1 -p=password1",
    "demo:secure2": "node bin/opcua-commander -e opc.tcp://opcuademo.sterfive.com:26543 -s=SignAndEncrypt -P=Basic256Sha256 -u=user1 -p=password1",
    "demo": "node bin/opcua-commander -e opc.tcp://opcuademo.sterfive.com:26543 -s=None -u=user1 -p=password1",
    "snap": "bash ./buildsnap.sh"
  },
  "author": "Etienne Rossignon",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/node-opcua/opcua-commander.git"
  },
  "publishConfig": {
    "provenance": true
  },
  "bin": {
    "opcua-commander": "bin/opcua-commander.js"
  },
  "engines": {
    "node": ">= 20.0"
  },
  "bugs": {
    "url": "https://github.com/node-opcua/opcua-commander/issues"
  },
  "dependencies": {
    "blessed": "^0.1.81",
    "chalk": "^5.6.2",
    "check-node-version": "4.2.1",
    "cli-truncate": "2.1.0",
    "commander": "^15.0.0",
    "node-opcua-certificate-manager": "^2.174.0",
    "node-opcua-client": "^2.174.0",
    "node-opcua-crypto": "^5.3.6",
    "node-opcua-pki": "^6.18.0",
    "proper-lockfile": "^4.1.2",
    "wordwrap": "^1.0.0"
  },
  "devDependencies": {
    "@types/blessed": "^0.1.27",
    "@types/wordwrap": "^1.0.3",
    "@vercel/ncc": "^0.44.1",
    "es-abstract": "^1.24.2",
    "node-opcua": "^2.174.0",
    "source-map-support": "^0.5.21",
    "tsup": "^8.5.1",
    "typescript": "^6.0.3",
    "vitest": "^4.1.10"
  }
}
