-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.23 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.23 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "@adogrove/monorepo",
"private": true,
"scripts": {
"build": "yarn workspaces foreach --all -ptv run build",
"biome": "yarn workspaces foreach --all -ptv run biome",
"biome:strict": "yarn workspaces foreach --all -ptv run biome:strict",
"biome:write": "yarn workspaces foreach --all -ptv run biome:write",
"test": "yarn workspaces foreach --all -ptv run test",
"typecheck": "yarn workspaces foreach --all -ptv run typecheck",
"format": "yarn workspaces foreach --all -ptv run format",
"docs:dev": "yarn workspace docs dev",
"docs:build": "yarn workspace docs build",
"docs:preview": "yarn workspace docs preview",
"automd": "automd"
},
"packageManager": "yarn@4.12.0",
"engines": {
"node": ">=24.0.0"
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">=24.0.0",
"onFail": "warn"
},
"packageManager": {
"name": "yarn",
"version": ">=4.12.0",
"onFail": "warn"
}
},
"workspaces": [
"packages/*",
"docs",
"tooling/*"
],
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"automd": "^0.4.3",
"dedent": "^1.7.2"
}
}