-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 928 Bytes
/
package.json
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
{
"name": "@actions-sdk/monorepo",
"type": "module",
"private": true,
"packageManager": "pnpm@9.15.4",
"scripts": {
"build": "turbo run build --filter \"./packages/**\" --concurrency=15",
"build:all": "turbo run build --concurrency=15",
"dev": "turbo run dev --filter \"./packages/**\" --concurrency=15",
"docs:dev": "turbo run dev --filter \"./docs\"",
"docs:build": "turbo run build --filter \"./docs\"",
"typecheck": "turbo run typecheck",
"lint": "biome lint",
"lint:fix": "biome lint --write",
"format": "biome format",
"format:fix": "biome format --write",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"@biomejs/biome": "catalog:",
"@changesets/changelog-github": "catalog:",
"@changesets/cli": "catalog:",
"@types/node": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
}
}