-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 868 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 868 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
{
"name": "fiberplane-yarn-worktree",
"description": "Fiberplane Yarn worktree",
"repository": "https://github.com/fiberplane/fiberplane",
"author": "Fiberplane <info@fiberplane.com>",
"license": "MIT OR Apache-2.0",
"packageManager": "yarn@3.5.0",
"workspaces": [
"fiberplane-charts",
"fiberplane-hooks",
"fiberplane-prometheus-query",
"fiberplane-ui"
],
"devDependencies": {
"@biomejs/biome": "^1.7.3",
"typescript": "^5.4.2"
},
"scripts": {
"build": "yarn workspaces foreach -Wpt --verbose run build",
"watch": "yarn workspaces foreach -Wipt --verbose run watch",
"format": "biome format --write .",
"lint": "biome ci .",
"test": "yarn workspaces foreach -W run test",
"test-dist": "yarn workspaces foreach -W run test-dist",
"type-check": "yarn workspaces foreach -Wp run type-check"
}
}