-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 792 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"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"
}
}