-
-
Notifications
You must be signed in to change notification settings - Fork 421
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.69 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.69 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
57
58
59
60
61
62
63
{
"name": "ccusage-monorepo",
"type": "module",
"version": "18.0.10",
"private": true,
"workspaces": [
"apps/*",
"docs"
],
"packageManager": "pnpm@10.30.1",
"engines": {
"runtime": [
{
"name": "node",
"version": "^24.13.0",
"onFail": "download"
},
{
"name": "bun",
"version": "^1.3.9",
"onFail": "download"
}
]
},
"scripts": {
"build": "pnpm run --filter '*' build",
"docs:dev": "pnpm run --filter docs dev",
"format": "pnpm --aggregate-output /^format:/",
"format:oxfmt": "oxfmt --write .",
"format:root": "pnpm run lint:root --fix",
"format:submodules": "pnpm --parallel -r --aggregate-output /^format/",
"preinstall": "npx only-allow pnpm",
"lint": "pnpm --no-bail --aggregate-output /^lint:/",
"lint:oxfmt": "oxfmt --check .",
"lint:root": "eslint --cache eslint.config.js .",
"lint:submodules": "pnpm --parallel -r --no-bail /^lint/",
"prepare": "pnpm run /^prepare:/",
"prepare:git": "git config --local core.hooksPath .githooks",
"prerelease": "pnpm run --filter '*' prerelease",
"release": "pnpm bumpp -r",
"postrelease": "git checkout ./**/package.json package.json",
"test": "pnpm run --filter '*' test",
"typecheck": "pnpm run --filter '*' typecheck"
},
"dependencies": {},
"devDependencies": {
"@gunshi/docs": "catalog:llm-docs",
"@praha/byethrow-docs": "catalog:llm-docs",
"@ryoppippi/eslint-config": "catalog:lint",
"@typescript/native-preview": "catalog:types",
"bumpp": "catalog:release",
"changelogithub": "catalog:release",
"eslint": "catalog:lint",
"lint-staged": "catalog:release",
"oxfmt": "catalog:lint",
"pkg-pr-new": "catalog:release"
},
"lint-staged": {
"*": [
"pnpm run format"
]
}
}