-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 871 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 871 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
{
"name": "gud-cli",
"version": "0.0.0",
"license": "Apache-2.0",
"workspaces": [
"packages/*",
"examples/*",
".github/actions/*"
],
"type": "module",
"private": true,
"scripts": {
"build": "turbo run build",
"build:packages": "turbo run build --filter=./packages/*",
"format": "biome format --write .",
"lint": "biome lint --diagnostic-level error .",
"lint:fix": "yarn lint --fix",
"lint:fix:unsafe": "yarn lint:fix --unsafe",
"test": "turbo run test:ci",
"typecheck": "turbo run typecheck",
"release": "sh scripts/release.sh",
"reset-node-modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' + && yarn cache clean && yarn"
},
"devDependencies": {
"@biomejs/biome": "^2.1.3",
"@changesets/cli": "^2.29.5",
"turbo": "^2.5.5"
},
"packageManager": "yarn@1.22.19"
}