{
  "name": "@helios-lang/cli-utils",
  "version": "0.2.0",
  "description": "Simplest possible cli library",
  "main": "src/index.js",
  "types": "types/index.d.ts",
  "type": "module",
  "author": "Christian Schmitz",
  "license": "BSD-3-Clause",
  "devDependencies": {
    "@types/node": "^20.12.5",
    "prettier": "^3.3.3",
    "typescript": "^5.4.4"
  },
  "dependencies": {
    "@helios-lang/codec-utils": "^0.3.1"
  },
  "prettier": {
    "trailingComma": "none",
    "tabWidth": 4,
    "semi": false,
    "singleQuote": false
  },
  "scripts": {
    "build": "pnpm run prettify && pnpm run build:types && pnpm run test:suite",
    "build:types": "tsc -p jsconfig.json --noEmit false --emitDeclarationOnly",
    "prettify": "prettier . --write",
    "test": "pnpm run test:pretty && pnpm run test:types && pnpm run test:suite",
    "test:pretty": "prettier . --check",
    "test:suite": "node --test  --experimental-test-coverage",
    "test:types": "tsc -p jsconfig.json --noEmit"
  }
}