Files
stripe__link-cli/packages/cli/package.json
Steve Kaliski b098ef2f6e Move authentication ownership into CLI (#261)
* Move authentication ownership into CLI

Committed-By-Agent: codex
Co-authored-by: codex <noreply@openai.com>

* Test legacy CLI auth storage compatibility

Committed-By-Agent: codex
Co-authored-by: codex <noreply@openai.com>

---------

Co-authored-by: codex <noreply@openai.com>
2026-08-25 11:04:14 -04:00

61 lines
1.4 KiB
JSON

{
"name": "@stripe/link-cli",
"version": "0.13.1",
"type": "module",
"bin": {
"link-cli": "./dist/cli.js"
},
"files": [
"dist",
"!dist/sea",
"postinstall.mjs",
"README.md",
"LICENSE"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/stripe/link-cli.git",
"directory": "packages/cli"
},
"homepage": "https://github.com/stripe/link-cli#readme",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"build:sea": "tsup --config tsup.sea.config.ts",
"postinstall": "node postinstall.mjs",
"prepack": "cp ../../README.md ../../LICENSE .",
"typecheck": "tsc",
"test": "vitest run",
"dev": "tsx src/cli.tsx"
},
"dependencies": {
"conf": "^15.1.0",
"incur": "^0.4.26",
"ink": "^5.2.1",
"ink-spinner": "^5.0.0",
"mppx": "0.8.15",
"qrcode": "^1.5.4",
"react": "^18.3.1",
"strip-ansi": "^7.2.0",
"update-notifier": "^7.3.1",
"viem": "^2.55.10",
"zod": "^4.4.3"
},
"devDependencies": {
"@stripe/link-sdk": "workspace:*",
"@stripe/link-typescript-config": "workspace:*",
"@types/node": "^22.19.19",
"@types/qrcode": "^1.5.6",
"@types/react": "^18.3.29",
"@types/update-notifier": "^6.0.8",
"ink-testing-library": "^4.0.0",
"tsup": "^8.5.1",
"tsx": "^4.23.5",
"typescript": "^5.9.3",
"vitest": "^4.1.10"
}
}