-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.25 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.25 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
{
"name": "@byteslice/monorepo",
"private": true,
"workspaces": {
"packages": [
"apps/**",
"packages/**"
],
"catalogs": {
"build": {
"tsup": "8.2.4"
},
"code": {
"typescript": "5.5.4"
},
"types": {
"@types/bun": "1.2.23"
}
}
},
"scripts": {
"build:packages": "turbo run build --filter './packages/*'",
"ci:publish": "bun run build:packages && changeset publish && git push --follow-tags",
"ci:version": "changeset version",
"clean": "rimraf --glob **/.turbo **/dist **/node_modules",
"code:check": "bun install --frozen-lockfile && biome ci . & bun run sort-manifests --check & cspell --dot .",
"code:fix": "biome check --write . & bun run sort-manifests",
"code:test": "bun test --coverage",
"dev": "turbo run dev",
"dev:playground": "turbo run dev --filter @byteslice/playground...",
"sort-manifests": "sort-package-json package.json packages/*/package.json"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/changelog-git": "0.2.0",
"@changesets/cli": "2.27.8",
"cspell": "8.14.2",
"rimraf": "6.0.1",
"sort-package-json": "2.10.1",
"turbo": "2.2.3"
},
"packageManager": "bun@1.3.0"
}