Files
stripe__link-cli/package.json
T
Dan Hill 6c0f92ffc3 Add versioning to the skill file (#91)
* feat: add versioning to the skill file

* fix: formatting
2026-05-08 12:53:44 -04:00

33 lines
792 B
JSON

{
"name": "@stripe/link-cli",
"private": true,
"type": "module",
"scripts": {
"build": "turbo run build && node scripts/sync-skill-version.js",
"sync-skill-version": "node scripts/sync-skill-version.js",
"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": "./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"
}
}