{
  "name": "about-system",
  "version": "0.0.51",
  "description": "A Node.js script to display key system information with emojis. Cross-platform support for Windows, macOS, and Linux with customizable output and caching.",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "about-system": "./dist/about-system-cli.js"
  },
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./api": {
      "types": "./dist/system-info-api.d.ts",
      "import": "./dist/system-info-api.js"
    },
    "./cli": {
      "types": "./dist/about-system-cli.d.ts",
      "import": "./dist/about-system-cli.js"
    },
    "./types": {
      "types": "./src/systeminfo-types.d.ts"
    }
  },
  "scripts": {
    "build": "vite build",
    "build:tsc": "tsc",
    "dev": "vite build --watch",
    "ship": "npm run build && npx standard-version --release-as patch; rm CHANGELOG.md; npm publish",
    "start": "npm run build && node dist/about-system-cli.js",
    "install-greeting": "npm run build && node dist/about-system-cli.js --install",
    "show-settings": "npm run build && node dist/about-system-cli.js --settings-show",
    "reset-settings": "npm run build && node dist/about-system-cli.js --settings-reset",
    "clear-cache": "npm run build && node dist/about-system-cli.js --refresh",
    "help": "npm run build && node dist/about-system-cli.js --help"
  },
  "keywords": [
    "src/about-system",
    "system",
    "information",
    "cli",
    "terminal",
    "cross-platform",
    "windows",
    "linux",
    "macos",
    "shell",
    "greeting",
    "emoji",
    "system-monitoring"
  ],
  "author": "vtempest",
  "license": "rights.institute/prosper",
  "repository": {
    "type": "git",
    "url": "https://github.com/OpenSourceAGI/dev-tools-starter-agent/tree/master/packages/about-system-info"
  },
  "homepage": "https://github.com/OpenSourceAGI/dev-tools-starter-agent/tree/master/packages/about-system-info",
  "files": [
    "dist/**/*",
    "src/**/*.ts",
    "README.md",
    "package.json"
  ],
  "os": [
    "win32",
    "darwin",
    "linux",
    "android"
  ],
  "preferGlobal": true,
  "directories": {
    "bin": "."
  },
  "dependencies": {
    "fuse.js": "^7.0.0",
    "ora": "^9.0.0"
  },
  "devDependencies": {
    "@types/node": "^25.0.3",
    "typescript": "^5.9.3",
    "vite": "^7.3.1",
    "vite-plugin-dts": "^4.5.4"
  }
}
