@unravel-tech/ccusage-opencode 18.0.5 → 18.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -1142,7 +1142,7 @@ async function executeCommand(cmd, ctx, name$1) {
1142
1142
  //#endregion
1143
1143
  //#region package.json
1144
1144
  var name = "@unravel-tech/ccusage-opencode";
1145
- var version = "18.0.5";
1145
+ var version = "18.1.0";
1146
1146
  var description = "Usage analysis tool for OpenCode sessions";
1147
1147
 
1148
1148
  //#endregion
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@unravel-tech/ccusage-opencode",
3
3
  "type": "module",
4
- "version": "18.0.5",
4
+ "version": "18.1.0",
5
5
  "description": "Usage analysis tool for OpenCode sessions",
6
6
  "contributors": [
7
7
  "ryoppippi",
@@ -21,16 +21,16 @@
21
21
  "main": "./dist/index.js",
22
22
  "module": "./dist/index.js",
23
23
  "bin": {
24
- "ccusage-opencode": "./src/index.ts"
24
+ "ccusage-opencode": "./dist/index.js"
25
25
  },
26
26
  "files": [
27
27
  "dist"
28
28
  ],
29
29
  "publishConfig": {
30
+ "access": "public",
30
31
  "bin": {
31
32
  "ccusage-opencode": "./dist/index.js"
32
- },
33
- "access": "public"
33
+ }
34
34
  },
35
35
  "engines": {
36
36
  "node": ">=20.19.4"
package/src/index.ts DELETED
@@ -1,6 +0,0 @@
1
- #!/usr/bin/env node
2
-
3
- import { run } from './run.ts';
4
-
5
- // eslint-disable-next-line antfu/no-top-level-await
6
- await run();