-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.56 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
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "chit-workspace",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"chit": "bun --no-env-file packages/cli/src/index.ts",
"cli": "bun --no-env-file packages/cli/src/index.ts",
"format": "biome check --write .",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"prepare": "lefthook install",
"release": "semantic-release",
"release:dry": "semantic-release --dry-run --no-ci",
"test": "bun --filter '*' test",
"typecheck": "bun --filter '*' typecheck",
"site:dev": "bun --filter @chit-run/site dev",
"site:build": "bun --filter @chit-run/site build",
"site:preview": "bun --filter @chit-run/site preview",
"site:typecheck": "bun --filter @chit-run/site typecheck",
"site:deploy": "bun --filter @chit-run/site deploy",
"docs:dev": "bun run site:dev",
"docs:build": "bun run site:build",
"docs:preview": "bun run site:preview",
"docs:typecheck": "bun run site:typecheck",
"docs:deploy": "bun run site:deploy"
},
"devDependencies": {
"@biomejs/biome": "^2.5.0",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/github": "^12.0.8",
"@semantic-release/npm": "^13.1.1",
"@semantic-release/release-notes-generator": "^14.1.1",
"lefthook": "^2.1.9",
"semantic-release": "^25.0.5"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"pkgRoot": "packages/cli"
}
],
"@semantic-release/github"
]
}
}