{
  "name": "mlly",
  "version": "1.1.0",
  "description": "Missing ECMAScript module utils for Node.js",
  "repository": "unjs/mlly",
  "license": "MIT",
  "sideEffects": false,
  "type": "module",
  "exports": {
    "require": "./dist/index.cjs",
    "import": "./dist/index.mjs"
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "dependencies": {
    "acorn": "^8.8.1",
    "pathe": "^1.0.0",
    "pkg-types": "^1.0.1",
    "ufo": "^1.0.1"
  },
  "devDependencies": {
    "@types/node": "^18.11.18",
    "@vitest/coverage-c8": "^0.27.0",
    "c8": "^7.12.0",
    "eslint": "^8.31.0",
    "eslint-config-unjs": "^0.0.3",
    "import-meta-resolve": "^2.2.1",
    "jiti": "^1.16.1",
    "prettier": "^2.8.2",
    "standard-version": "^9.5.0",
    "typescript": "^4.9.4",
    "unbuild": "^1.0.2",
    "vitest": "^0.27.0"
  },
  "packageManager": "pnpm@7.23.0",
  "scripts": {
    "build": "unbuild",
    "dev": "vitest",
    "lint": "eslint --ext .ts,.js src test && prettier -c src test",
    "release": "pnpm test && pnpm build && standard-version && pnpm publish && git push --follow-tags",
    "test": "pnpm lint && vitest run"
  }
}