-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 957 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 957 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
{
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8"
},
"scripts": {
"dev": "bun run --filter solid-number-flow dev",
"build": "bun run --filter solid-number-flow build",
"dev:site": "bun run --filter site dev",
"build:site": "bun run --filter solid-number-flow build && bun run --filter site build",
"preview:site": "bun run --filter site preview",
"test": "bun run --filter solid-number-flow test",
"lint": "bun run --filter '*' lint",
"lint:fix": "bun run --filter '*' lint:fix",
"check": "bun run --filter '*' check",
"publish-ci": "bun run lint && bun run build && changeset publish",
"clean": "rm -rf node_modules && rm -rf apps/*/node_modules && rm -rf packages/*/node_modules"
},
"workspaces": {
"packages": [
"apps/*",
"packages/*"
],
"catalog": {
"number-flow": "0.5.8"
}
}
}