-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.18 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.18 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
{
"name": "thaterror",
"private": true,
"workspaces": [
"packages/*"
],
"type": "module",
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@changesets/cli": "^2.29.8",
"@types/bun": "latest",
"simple-git-hooks": "^2.13.1",
"syncpack": "^13.0.4"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"engines": {
"bun": ">=1.3"
},
"scripts": {
"test": "bun test",
"type-check": "tsc --noEmit",
"lint:check": "biome ci",
"lint:fix": "biome check --write",
"syncpack:list": "syncpack list-mismatches",
"syncpack:fix": "syncpack fix-mismatches",
"precommit:check": "bun test && bun run lint:check && bun run type-check && bun run syncpack:list",
"install:clean": "bun pm cache rm && bunx rimraf bun.lock bun.lockb && bun install",
"setup:githooks": "simple-git-hooks",
"version": "changeset version && bun update --lockfile-only",
"release": "bun run ./scripts/release.ts",
"change": "changeset"
},
"simple-git-hooks": {
"pre-commit": "bun run lint:check && bun run type-check"
}
}