-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.56 KB
/
package.json
File metadata and controls
54 lines (54 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
{
"type": "module",
"version": "0.0.2",
"private": true,
"packageManager": "pnpm@10.4.0",
"scripts": {
"build": "pnpm -r --filter \"!web\" build",
"dev": "pnpm -r --filter \"!web\" dev",
"lint": "biome check",
"lint:fix": "biome check --write .",
"prepublishOnly": "pnpm build",
"changeset": "changeset",
"changeset:version": "changeset version && pnpm install --lockfile-only",
"changeset:publish": "changeset publish",
"release": "pnpm changeset:version && pnpm build && pnpm changeset:publish",
"ci:release": "pnpm build && pnpm changeset:publish",
"test": "vitest",
"test:ci": "vitest run",
"typecheck": "pnpm -r typecheck",
"prepare": "simple-git-hooks",
"update-readme": "automd && pnpm -r update-readme"
},
"devDependencies": {
"@biomejs/biome": "2.2.5",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.7",
"@maxchang/biome-config": "^0.1.6",
"@types/node": "^22.13.4",
"automd": "^0.4.2",
"lint-staged": "^15.4.3",
"pnpm": "^10.4.0",
"simple-git-hooks": "^2.11.1",
"tsdown": "^0.15.6",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vite": "^6.1.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.5"
},
"simple-git-hooks": {
"pre-commit": "pnpm i --frozen-lockfile --ignore-scripts --offline && pnpx lint-staged"
},
"lint-staged": {
"*": [
"biome check --no-errors-on-unmatched --files-ignore-unknown=true"
]
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"simple-git-hooks"
]
}
}