{
	"name": "pwsh-demo",
	"version": "0.0.0-example",
	"private": true,
	"description": "PowerShell completion playground for dreamcli",
	"repository": {
		"type": "git",
		"url": "git+https://github.com/kjanat/dreamcli.git",
		"directory": "examples/pwsh-demo"
	},
	"type": "module",
	"module": "src/main.ts",
	"bin": {
		"pwsh-demo": "src/main.ts"
	},
	"files": ["src", "README.md", "smoke-powershell.ps1", "pwsh-demo.cmd", "!src/**/*.test.ts"],
	"scripts": {
		"build": "bun build src/main.ts --install --outdir=dist --format=esm --target=node --external @kjanat/dreamcli",
		"smoke:powershell": "pwsh -NoLogo -NoProfile -ExecutionPolicy Bypass -File ./smoke-powershell.ps1",
		"test": "bun test",
		"typecheck": "tsc --noEmit"
	},
	"dependencies": {
		"@kjanat/dreamcli": "file:../.."
	},
	"devDependencies": {
		"@types/bun": "catalog:",
		"typescript": "catalog:"
	},
	"packageManager": "bun@1.3.12",
	"engines": {
		"bun": "^1.3"
	},
	"devEngines": {
		"runtime": {
			"name": "bun",
			"version": "^1.3",
			"onFail": "error"
		}
	}
}
