{
  "name": "webssh2_client",
  "version": "5.1.0",
  "ignore": [
    ".gitignore"
  ],
  "description": "A client for the webssh2 gateway",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/billchurch/webssh2_client.git"
  },
  "main": "index.js",
  "type": "module",
  "types": "index.d.ts",
  "exports": {
    ".": {
      "types": "./index.d.ts",
      "default": "./index.js"
    }
  },
  "files": [
    "index.js",
    "index.d.ts",
    "client/index.js",
    "client/public/**/*"
  ],
  "engines": {
    "node": ">= 22"
  },
  "scripts": {
    "build": "cd client/src && vite build --mode production",
    "builddev": "cd client/src && vite build --mode development",
    "build:link": "npm run build && npm link",
    "check-version": "grep -o 'Version.*alpha.*[0-9]' client/public/webssh2-*.js || echo 'Version not found in bundle'",
    "dev": "cd client/src && vite --mode development",
    "watch": "cd client/src && vite --mode development",
    "analyze": "cd client/src && vite build --mode production && vite-bundle-visualizer",
    "typecheck": "tsc -b --pretty --noEmit",
    "typecheck:client": "tsc -p client --noEmit",
    "build:server": "tsc -p tsconfig.json",
    "lint": "eslint . --ext .js,.ts,.tsx",
    "lint:fix": "eslint . --ext .js,.ts,.tsx --fix",
    "lint:tailwind": "eslint client/src/js/components --ext .tsx --no-eslintrc --parser @typescript-eslint/parser --plugin tailwindcss --rule 'tailwindcss/classnames-order: warn' --rule 'tailwindcss/no-contradicting-classname: error' --rule 'tailwindcss/no-custom-classname: warn' --rule 'tailwindcss/migration-from-tailwind-2: warn'",
    "lint:html": "html-validate \"client/src/**/*.html\"",
    "lint:css": "stylelint \"client/src/**/*.css\"",
    "lint:css:fix": "stylelint \"client/src/**/*.css\" --fix",
    "a11y:axe": "npx --no-install axe http://localhost:3000",
    "format": "prettier --check \"**/*.{js,ts,tsx,json,md}\"",
    "format:write": "prettier --write \"**/*.{js,ts,tsx,json,md}\"",
    "publish:dry-run": "npm publish --dry-run",
    "publish:npm": "npm publish",
    "test": "node --test",
    "check:all": "npm run lint:fix && npm run lint:css:fix && npm run format:write && npm run lint:html && npm run typecheck && npm run typecheck:client && node --test",
    "security:audit": "npm audit && trivy fs --scanners vuln ."
  },
  "author": "Bill Church",
  "license": "MIT",
  "devDependencies": {
    "@axe-core/cli": "^4.11.3",
    "@rollup/plugin-terser": "^0.4.4",
    "@tailwindcss/forms": "^0.5.11",
    "@types/node": "^24.12.4",
    "@typescript-eslint/eslint-plugin": "^8.59.4",
    "@typescript-eslint/parser": "^8.59.4",
    "@xterm/addon-fit": "^0.11.0",
    "@xterm/addon-search": "^0.16.0",
    "@xterm/xterm": "^6.0.0",
    "autoprefixer": "^10.5.0",
    "debug": "^4.4.3",
    "eslint-config-airbnb": "^19.0.4",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-no-unsanitized": "^4.1.4",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-prettier": "^5.5.5",
    "eslint-plugin-tailwindcss": "3.18.2",
    "html-validate": "^10.17.0",
    "jest-axe": "^10.0.0",
    "jsdom": "^28.1.0",
    "jsmasker": "^2.0.0",
    "lucide-solid": "^0.563.0",
    "postcss": "^8.5.15",
    "prettier": "^3.8.3",
    "prettier-plugin-tailwindcss": "^0.7.4",
    "socket.io-client": "^4.8.3",
    "solid-js": "^1.9.13",
    "stylelint": "^17.12.0",
    "stylelint-config-standard": "^40.0.0",
    "tailwindcss": "3.4.13",
    "typescript": "^5.9.3",
    "vite": "^7.3.3",
    "vite-bundle-visualizer": "^1.2.1",
    "vite-plugin-solid": "^2.11.12"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "standard": {
    "ignore": [
      "client/public/**/*"
    ]
  },
  "overrides": {
    "serialize-javascript": ">=7.0.3",
    "tmp": ">=0.2.6",
    "axios": ">=1.16.1"
  },
  "optionalDependencies": {
    "@rollup/rollup-linux-x64-gnu": "^4.53.3"
  }
}
