{
  "name": "kons",
  "version": "0.7.1",
  "packageManager": "pnpm@7.9.0",
  "author": "Ray <i@mk1.io> (@so1ve)",
  "description": "An elegant console logger.",
  "keywords": [
    "console",
    "logger",
    "reporter",
    "universal",
    "unified",
    "winston",
    "elegant"
  ],
  "type": "module",
  "homepage": "https://github.com/so1ve/kons#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/so1ve/kons.git"
  },
  "bugs": {
    "url": "https://github.com/so1ve/kons/issues"
  },
  "license": "MIT",
  "sideEffects": false,
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs"
    },
    "./consola": {
      "types": "./dist/consola.d.ts",
      "import": "./dist/consola.mjs"
    }
  },
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "typesVersions": {
    "*": {
      "*": [
        "./dist/*",
        "./dist/index.d.ts"
      ]
    }
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "figures": "5.0.0",
    "picocolors": "^1.0.0"
  },
  "devDependencies": {
    "@antfu/ni": "^0.17.2",
    "@babel/types": "^7.18.10",
    "@so1ve/eslint-config": "^0.28.1",
    "@types/node": "^18.7.1",
    "bumpp": "^8.2.1",
    "eslint": "^8.21.0",
    "jiti": "^1.14.0",
    "pnpm": "^7.9.0",
    "puild": "1.3.0-test.1",
    "rimraf": "^3.0.2",
    "tsx": "^3.8.1",
    "typescript": "^4.7.4",
    "vite": "^3.0.5",
    "vitest": "^0.21.1"
  },
  "scripts": {
    "build": "rimraf dist && puild",
    "watch": "puild --watch",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "release": "bumpp --commit --push --tag && pnpm publish",
    "start": "tsx src/index.ts",
    "test": "vitest",
    "typecheck": "tsc --noEmit"
  }
}