Files
stripe__link-cli/package.json
T
Dan Hill 91ce9f035d Update notifier
Use update notifier to indicate new versions. In TTY outputs, this is a very standard update-notifier integration. For JSON outputs consumed by agents, we include the info in the auth status command to not interfere with agents parsing output in other commands.
2026-04-25 17:30:46 -04:00

32 lines
693 B
JSON

{
"name": "@stripe/link-cli",
"private": true,
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "turbo watch build",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"lint": "biome lint .",
"format": "biome format --write .",
"check": "biome check --write .",
"link-cli": "node packages/cli/dist/cli.js"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.30.0",
"turbo": "^2.9.3",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.32.1",
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"esbuild"
]
},
"engines": {
"node": ">=18"
}
}