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
54 lines (54 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.54 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
{
"name": "ccusage-monorepo",
"version": "20.0.4",
"private": true,
"workspaces": [
"apps/*",
"docs",
"packages/*"
],
"type": "module",
"scripts": {
"build": "pnpm run --filter '*' build",
"docs:dev": "pnpm run --filter docs dev",
"format": "oxfmt --write .",
"preinstall": "npx only-allow pnpm",
"lint": "pnpm --no-bail --aggregate-output /^lint:/",
"lint:oxfmt": "oxfmt --check .",
"lint:oxlint": "oxlint .",
"lint:rust": "cargo clippy --manifest-path rust/Cargo.toml --workspace --all-targets -- -D warnings",
"prerelease": "pnpm run --filter '*' prerelease",
"release": "pnpm bumpp -r",
"postrelease": "git checkout ./**/package.json package.json",
"sync:rust-version": "cargo set-version --manifest-path rust/Cargo.toml --workspace \"$npm_package_version\"",
"test": "pnpm --parallel --aggregate-output /^test:parallel:/",
"test:parallel:rust": "pnpm run test:rust",
"test:parallel:vitest": "pnpm run test:vitest",
"test:rust": "cargo test --manifest-path rust/Cargo.toml --workspace",
"test:vitest": "TZ=UTC vitest run",
"typecheck": "pnpm run --filter '*' typecheck"
},
"dependencies": {},
"devDependencies": {
"@gunshi/docs": "catalog:llm-docs",
"bumpp": "catalog:release",
"changelogithub": "catalog:release",
"pkg-pr-new": "catalog:release",
"vitest": "catalog:testing"
},
"engines": {
"runtime": [
{
"name": "node",
"version": "^24.15.0",
"onFail": "download"
},
{
"name": "bun",
"version": "^1.3.13",
"onFail": "download"
}
]
},
"packageManager": "pnpm@11.1.1"
}