Skip to content

Commit 95c8249

Browse files
committed
chore: bump version to 1.0.6, fix docs and add package metadata
- Fix language switch links to use absolute GitHub URLs (fixes 404 on npm/Docker Hub) - Add repository, homepage, bugs, keywords, license to CLI package.json - Add OCI LABEL metadata to Dockerfile
1 parent ea70c1d commit 95c8249

5 files changed

Lines changed: 30 additions & 4 deletions

File tree

Dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
FROM node:20-slim
22

3+
LABEL org.opencontainers.image.title="aiusage" \
4+
org.opencontainers.image.description="Track AI coding assistant usage, token consumption, cost, and tool calls across Claude Code, Codex, OpenCode, and more" \
5+
org.opencontainers.image.url="https://github.com/juliantanx/aiusage" \
6+
org.opencontainers.image.source="https://github.com/juliantanx/aiusage" \
7+
org.opencontainers.image.licenses="MIT"
8+
39
RUN corepack enable && corepack prepare pnpm@latest --activate
410

511
WORKDIR /app

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Track AI coding assistant usage, token consumption, cost, and tool calls in one place across Claude Code, Codex, OpenClaw, and OpenCode.
44

5-
English | [中文](./README_zh.md)
5+
English | [中文](https://github.com/juliantanx/aiusage/blob/main/README_zh.md)
66

77
## Why aiusage
88

README_zh.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
在一个地方追踪 Claude Code、Codex、OpenClaw、OpenCode 的 AI 编程助手使用情况,包括 token 消耗、费用和工具调用。
44

5-
[English](./README.md) | 中文
5+
[English](https://github.com/juliantanx/aiusage/blob/main/README.md) | 中文
66

77
## 为什么使用 aiusage
88

packages/cli/package.json

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,28 @@
11
{
22
"name": "@juliantanx/aiusage",
3-
"version": "1.0.5",
3+
"version": "1.0.6",
44
"type": "module",
55
"description": "Track and analyze AI coding assistant usage across Claude Code, Codex, and more",
6+
"keywords": [
7+
"ai",
8+
"claude",
9+
"codex",
10+
"opencode",
11+
"usage",
12+
"token",
13+
"cost",
14+
"analytics",
15+
"dashboard"
16+
],
17+
"homepage": "https://github.com/juliantanx/aiusage#readme",
18+
"repository": {
19+
"type": "git",
20+
"url": "https://github.com/juliantanx/aiusage.git"
21+
},
22+
"bugs": {
23+
"url": "https://github.com/juliantanx/aiusage/issues"
24+
},
25+
"license": "MIT",
626
"main": "./dist/index.js",
727
"types": "./dist/index.d.ts",
828
"bin": {

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aiusage/core",
3-
"version": "1.0.5",
3+
"version": "1.0.6",
44
"type": "module",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",

0 commit comments

Comments
 (0)