-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 768 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 768 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
{
"name": "figdeck",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "bun run --filter '@figdeck/shared' build && bun run --filter '!@figdeck/shared' build",
"dev": "bun run --filter '@figdeck/cli' dev",
"serve": "bun run packages/cli/dist/index.js serve",
"lint": "biome lint .",
"format": "biome format --write .",
"check": "biome check .",
"check:fix": "biome check --write .",
"typecheck": "bun run --filter '*' typecheck",
"docs:dev": "bun run --filter '@figdeck/docs' dev",
"docs:build": "bun run --filter '@figdeck/docs' build",
"docs:preview": "bun run --filter '@figdeck/docs' preview"
},
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"typescript": "^5.3.3"
}
}