{
	"name": "degit",
	"version": "3.4.7",
	"description": "Straightforward project scaffolding",
	"keywords": [
		"git",
		"scaffolding",
		"template"
	],
	"homepage": "https://github.com/Rich-Harris/degit#readme",
	"bugs": {
		"url": "https://github.com/Rich-Harris/degit/issues"
	},
	"license": "MIT",
	"author": "Rich Harris",
	"repository": {
		"type": "git",
		"url": "git+https://github.com/Rich-Harris/degit.git"
	},
	"bin": {
		"degit": "degit"
	},
	"files": [
		"assets/help.md",
		"dist",
		"docs/CHANGELOG.md",
		"LICENSE.md",
		"README.md"
	],
	"type": "module",
	"main": "dist/index.js",
	"types": "dist/index.d.ts",
	"scripts": {
		"lint": "oxlint --import-plugin --fix .",
		"lint:ci": "oxlint --import-plugin --deny-warnings .",
		"audit": "bun audit",
		"knip:ci": "knip",
		"perf": "bun perf/bench.ts",
		"perf:ci": "bun perf/bench.ts",
		"prepare": "husky",
		"format": "oxfmt --write .",
		"format:ci": "oxfmt --check .",
		"duplicates:ci": "jscpd --gitignore --reporters console --threshold 5 tsdown.config.ts vitest.config.ts src test",
		"dev": "tsdown --config tsdown.config.ts --watch",
		"build": "tsdown --config tsdown.config.ts",
		"test": "vitest run --exclude test/integration/private.test.ts",
		"test:integration": "vitest run test/integration",
		"test:integration:release": "bun test/integration/release.ts",
		"test:coverage": "vitest run --coverage",
		"pretest": "bun run build",
		"prepublishOnly": "bun run test"
	},
	"devDependencies": {
		"@types/node": "25.6.0",
		"@vitest/coverage-v8": "4.1.5",
		"enquirer": "2.3.6",
		"eslint-plugin-security": "4.0.0",
		"fuzzysearch": "1.0.3",
		"https-proxy-agent": "5.0.0",
		"husky": "9.1.7",
		"isomorphic-git": "1.38.1",
		"jscpd": "4.0.9",
		"knip": "6.11.0",
		"lint-staged": "10.5.4",
		"mri": "1.1.6",
		"oxfmt": "0.47.0",
		"oxlint": "1.62.0",
		"rimraf": "3.0.2",
		"tar": "7.5.11",
		"tiny-glob": "0.2.8",
		"tsdown": "0.21.10",
		"typescript": "6.0.3",
		"vitest": "4.1.5",
		"yoctocolors": "2.1.2"
	},
	"lint-staged": {
		"*.{js,ts}": [
			"oxlint --import-plugin --fix --deny-warnings",
			"git add"
		],
		"**/*": [
			"oxfmt --write --no-error-on-unmatched-pattern",
			"git add"
		]
	},
	"engines": {
		"node": ">=20.0.0"
	},
	"packageManager": "bun@1.3.14"
}
