-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 881 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 881 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
{
"name": "@actions-sdk/monorepo",
"type": "module",
"private": true,
"packageManager": "pnpm@10.28.2",
"scripts": {
"build": "turbo run build --filter \"./packages/**\" --concurrency=15",
"build:docs": "turbo run build --filter \"./docs\"",
"build:examples": "turbo run build --filter \"./examples\" --concurrency=15",
"dev:docs": "turbo run dev --filter \"./docs\"",
"clean": "turbo run clean && git clean -xdf node_modules",
"typecheck": "turbo run typecheck",
"lint": "turbo run lint",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"@changesets/changelog-github": "catalog:monorepo",
"@changesets/cli": "catalog:monorepo",
"@types/node": "catalog:types",
"eslint": "catalog:linting",
"turbo": "catalog:monorepo",
"typescript": "catalog:dev",
"vitest": "catalog:testing"
}
}