{ "name": "arg-parser", "module": "src/index.ts", "type": "module", "packageManager": "bun@1.1.13^", "devDependencies": { "@types/bun": "latest", "oxfmt": "^0.49.0", "oxlint": "^1.64.0" }, "peerDependencies": { "typescript": "^5" }, "files": [ "dist" ], "exports": { ".": "./dist/index.js" }, "scripts": { "build:types": "tsc --emitDeclarationOnly", "build:js": "bun build ./src/index.ts --outdir ./dist --minify --target bun", "build": "bun run build:types && bun run build:js", "prepublishOnly": "bun run build", "fmt": "bunx oxfmt fmt src/", "lint": "bunx oxlint lint src/" } }