-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1 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
{
"name": "better-themes",
"author": "SaviruFr",
"homepage": "https://better-themes.netlify.app",
"license": "MIT",
"packageManager": "pnpm@11.5.2",
"scripts": {
"build": "turbo run build",
"build:package": "pnpm --filter 'better-themes' build",
"build:apps": "pnpm --filter 'web' build",
"dev": "turbo run dev",
"format": "pnpm biome format --write .",
"format:check": "pnpm biome format .",
"lint": "pnpm biome lint .",
"lint:fix": "pnpm biome check --write .",
"test": "pnpm --filter '*' test",
"changeset": "changeset",
"changeset:add": "changeset add",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish --no-git-tag",
"changeset:status": "changeset status --since=main",
"release": "pnpm build:package && changeset publish",
"ci": "pnpm lint && pnpm format:check && pnpm build"
},
"devDependencies": {
"@biomejs/biome": "2.5.3",
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"turbo": "^2.9.12"
},
"type": "module"
}