forked from ccusage/ccusage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.74 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
{
"name": "ccusage-monorepo",
"type": "module",
"version": "19.0.2",
"private": true,
"workspaces": [
"apps/*",
"docs"
],
"packageManager": "pnpm@11.1.1",
"engines": {
"runtime": [
{
"name": "node",
"version": "^24.15.0",
"onFail": "download"
},
{
"name": "bun",
"version": "^1.3.13",
"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:lefthook": "lefthook install",
"prerelease": "pnpm run --filter '*' prerelease",
"release": "pnpm bumpp -r",
"postrelease": "git checkout ./**/package.json package.json",
"sync:skills": "bun scripts/sync-skills.ts",
"sync:skills:check": "bun scripts/sync-skills.ts --check",
"test": "TZ=UTC vitest run",
"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",
"lefthook": "catalog:release",
"oxfmt": "catalog:lint",
"pkg-pr-new": "catalog:release",
"vitest": "catalog:testing"
}
}