{
	"name": "azpass",
	"version": "0.0.3",
	"description": "Authenticate npm to Azure DevOps private feeds in one command",
	"keywords": [
		"azure",
		"azure-devops",
		"npm",
		"auth",
		"npmrc",
		"pat",
		"devops",
		"artifacts"
	],
	"repository": {
		"type": "git",
		"url": "https://github.com/charl-kruger/azpass"
	},
	"license": "MIT",
	"author": {
		"name": "Charl Kruger",
		"email": "charl.kruger@example.com"
	},
	"sideEffects": false,
	"type": "module",
	"exports": {
		".": {
			"types": "./lib/index.d.ts",
			"import": "./lib/index.js"
		}
	},
	"module": "./lib/index.js",
	"types": "./lib/index.d.ts",
	"bin": "./bin/index.js",
	"files": [
		"bin/",
		"lib/"
	],
	"scripts": {
		"build": "tsup",
		"format": "prettier .",
		"lint": "eslint . --max-warnings 0",
		"prepare": "husky",
		"release": "pnpm run build && changeset publish",
		"start": "pnpm run build && node ./bin/index.js",
		"test": "vitest",
		"tsc": "tsc"
	},
	"lint-staged": {
		"*": "prettier --ignore-unknown --write"
	},
	"dependencies": {
		"@azure/identity": "^4.13.0",
		"@clack/prompts": "^1.0.1",
		"ci-info": "^4.4.0",
		"execa": "^9.6.1",
		"picocolors": "^1.1.1",
		"zod": "^4.3.6",
		"zod-validation-error": "^5.0.0"
	},
	"devDependencies": {
		"@changesets/cli": "^2.29.8",
		"@eslint/js": "^10.0.1",
		"@types/node": "^25.3.3",
		"@vitest/coverage-v8": "^4.0.18",
		"@vitest/eslint-plugin": "^1.6.9",
		"console-fail-test": "^0.6.1",
		"eslint": "^10.0.2",
		"husky": "^9.1.7",
		"lint-staged": "^16.3.1",
		"prettier": "^3.8.1",
		"prettier-plugin-packagejson": "^3.0.0",
		"tsup": "^8.5.1",
		"typescript": "^5.9.3",
		"typescript-eslint": "^8.56.1",
		"vitest": "^4.0.18"
	},
	"engines": {
		"node": ">=18.3.0"
	},
	"publishConfig": {
		"access": "public"
	}
}
