forked from dhamaniasad/ccusage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.16 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.16 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
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "ccusage",
"version": "0.6.0",
"description": "Usage analysis tool for Claude Code",
"homepage": "https://github.com/ryoppippi/ccusage#readme",
"bugs": {
"url": "https://github.com/ryoppippi/ccusage/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryoppippi/ccusage.git"
},
"funding": "https://github.com/ryoppippi/ccusage?sponsor=1",
"license": "MIT",
"author": "ryoppippi",
"type": "module",
"exports": {
".": "./dist/index.js",
"./calculate-cost": "./dist/calculate-cost.js",
"./data-loader": "./dist/data-loader.js",
"./debug": "./dist/debug.js",
"./logger": "./dist/logger.js",
"./mcp": "./dist/mcp.js",
"./pricing-fetcher": "./dist/pricing-fetcher.js",
"./shared-args": "./dist/shared-args.js",
"./types": "./dist/types.js",
"./utils": "./dist/utils.js",
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": "./dist/index.js",
"files": ["dist"],
"scripts": {
"build": "tsdown && sort-package-json",
"format": "biome check --write .",
"lint": "biome check .",
"prepack": "bun run build && clean-pkg-json",
"prepare": "simple-git-hooks",
"release": "bun lint && bun typecheck && bun test && bun run build && bumpp",
"start": "bun run ./src/index.ts",
"test": "bun test",
"typecheck": "tsgo --noEmit"
},
"simple-git-hooks": {
"pre-commit": "bun lint-staged"
},
"lint-staged": {
"*": ["biome check --write --no-errors-on-unmatched "]
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.2.15",
"@typescript/native-preview": "^7.0.0-dev.20250607.1",
"@valibot/to-json-schema": "^1.3.0",
"bumpp": "^10.1.1",
"clean-pkg-json": "^1.3.0",
"cli-table3": "^0.6.5",
"consola": "^3.4.2",
"fast-sort": "^3.4.1",
"fastmcp": "^2.2.1",
"fs-fixture": "^2.7.1",
"gunshi": "^0.25.0",
"lint-staged": "^15.5.0",
"picocolors": "^1.1.1",
"publint": "^0.3.12",
"simple-git-hooks": "^2.12.1",
"sort-package-json": "^3.2.1",
"tinyglobby": "^0.2.14",
"tsdown": "^0.12.3",
"unplugin-unused": "^0.4.4",
"valibot": "^1.1.0"
},
"trustedDependencies": ["@biomejs/biome", "simple-git-hooks"]
}