{
  "name": "jargs",
  "version": "1.0.0-alpha.1",
  "description": "Simple node arg parser with explicit tree structure schema",
  "main": "commonjs/index.js",
  "module": "esm/index.js",
  "types": "esm/index.d.ts",
  "scripts": {
    "dist": "npm run commonjs && npm run esm",
    "commonjs": "rm -rf commonjs && tsc --project tsconfig.commonjs.json",
    "esm": "rm -rf esm && tsc --project tsconfig.esm.json",
    "lint": "eslint src/ examples/ tests/",
    "tests": "jest --runInBand --coverage",
    "typecheck": "tsc --noEmit --project tsconfig.json",
    "format-check": "prettier --check '**/*'",
    "format": "prettier --write '**/*'",
    "test": "npm run format-check && npm run lint && npm run typecheck && npm run tests",
    "prepublishOnly": "npm test && npm run dist"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jakesidsmith/jargs.git"
  },
  "keywords": [
    "jargs",
    "argv",
    "args",
    "arguments",
    "node",
    "parser"
  ],
  "author": "Jake 'Sid' Smith",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/jakesidsmith/jargs/issues"
  },
  "homepage": "https://github.com/jakesidsmith/jargs#readme",
  "devDependencies": {
    "@babel/preset-env": "^7.22.9",
    "@types/jest": "^29.5.3",
    "@typescript-eslint/eslint-plugin": "^6.2.1",
    "@typescript-eslint/parser": "^6.2.1",
    "eslint": "^8.46.0",
    "eslint-config-prettier": "^9.0.0",
    "eslint-plugin-prettier": "^5.0.0",
    "eslint-plugin-simple-import-sort": "^10.0.0",
    "jest": "^29.6.2",
    "prettier": "^3.0.1",
    "ts-jest": "^29.1.1",
    "ts-node": "^10.9.1",
    "typescript": "^5.1.6"
  }
}
