codex-wrapped-noyrlimit 1.0.1 → 1.0.3
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/README.md +8 -0
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -95,6 +95,14 @@ Codex Wrapped reads data from your local Codex CLI installation:
|
|
|
95
95
|
|
|
96
96
|
No data is sent anywhere. Everything is processed locally.
|
|
97
97
|
|
|
98
|
+
Token pricing for cost estimates is also local and versioned in:
|
|
99
|
+
|
|
100
|
+
```
|
|
101
|
+
src/pricing-data.ts
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
If a model is missing from that table, cost is treated as unavailable for that model until it is added in a new release.
|
|
105
|
+
|
|
98
106
|
## Building
|
|
99
107
|
|
|
100
108
|
### Development
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codex-wrapped-noyrlimit",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Generate a personalized Spotify Wrapped-style summary of your Codex usage",
|
|
5
5
|
"bin": {
|
|
6
6
|
"codex-wrapped-noyrlimit": "bin/codex-wrapped-noyrlimit.mjs"
|
|
@@ -9,17 +9,17 @@
|
|
|
9
9
|
"postinstall": "node ./postinstall.mjs"
|
|
10
10
|
},
|
|
11
11
|
"optionalDependencies": {
|
|
12
|
-
"codex-wrapped-noyrlimit-linux-arm64": "1.0.
|
|
13
|
-
"codex-wrapped-noyrlimit-linux-x64": "1.0.
|
|
14
|
-
"codex-wrapped-noyrlimit-linux-x64-baseline": "1.0.
|
|
15
|
-
"codex-wrapped-noyrlimit-linux-arm64-musl": "1.0.
|
|
16
|
-
"codex-wrapped-noyrlimit-linux-x64-musl": "1.0.
|
|
17
|
-
"codex-wrapped-noyrlimit-linux-x64-baseline-musl": "1.0.
|
|
18
|
-
"codex-wrapped-noyrlimit-darwin-arm64": "1.0.
|
|
19
|
-
"codex-wrapped-noyrlimit-darwin-x64": "1.0.
|
|
20
|
-
"codex-wrapped-noyrlimit-darwin-x64-baseline": "1.0.
|
|
21
|
-
"codex-wrapped-noyrlimit-windows-x64": "1.0.
|
|
22
|
-
"codex-wrapped-noyrlimit-windows-x64-baseline": "1.0.
|
|
12
|
+
"codex-wrapped-noyrlimit-linux-arm64": "1.0.3",
|
|
13
|
+
"codex-wrapped-noyrlimit-linux-x64": "1.0.3",
|
|
14
|
+
"codex-wrapped-noyrlimit-linux-x64-baseline": "1.0.3",
|
|
15
|
+
"codex-wrapped-noyrlimit-linux-arm64-musl": "1.0.3",
|
|
16
|
+
"codex-wrapped-noyrlimit-linux-x64-musl": "1.0.3",
|
|
17
|
+
"codex-wrapped-noyrlimit-linux-x64-baseline-musl": "1.0.3",
|
|
18
|
+
"codex-wrapped-noyrlimit-darwin-arm64": "1.0.3",
|
|
19
|
+
"codex-wrapped-noyrlimit-darwin-x64": "1.0.3",
|
|
20
|
+
"codex-wrapped-noyrlimit-darwin-x64-baseline": "1.0.3",
|
|
21
|
+
"codex-wrapped-noyrlimit-windows-x64": "1.0.3",
|
|
22
|
+
"codex-wrapped-noyrlimit-windows-x64-baseline": "1.0.3"
|
|
23
23
|
},
|
|
24
24
|
"repository": {
|
|
25
25
|
"type": "git",
|