-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.37 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.37 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
{
"name": "codex-wrapped",
"version": "1.0.0",
"author": {
"name": "Numman Ali",
"email": "numman.ali@gmail.com"
},
"description": "Generate a personalized Spotify Wrapped-style summary of your Codex usage",
"homepage": "https://github.com/numman-ali/codex-wrapped",
"repository": {
"type": "git",
"url": "https://github.com/numman-ali/codex-wrapped.git"
},
"bugs": {
"url": "https://github.com/numman-ali/codex-wrapped/issues"
},
"keywords": [
"codex",
"openai",
"wrapped",
"codex-wrapped"
],
"license": "MIT",
"type": "module",
"bin": {
"codex-wrapped": "./bin/codex-wrapped"
},
"scripts": {
"start": "bun src/index.ts",
"dev": "bun run --watch src/index.ts",
"build": "tsgo --noEmit && bun run scripts/build.ts",
"publish": "bun run scripts/publish.ts",
"release": "semantic-release",
"clean": "rm -rf dist"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"@resvg/resvg-wasm": "^2.6.2",
"react": "^19.2.3",
"satori": "^0.18.3",
"xdg-basedir": "^5.1.0"
},
"devDependencies": {
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@types/bun": "latest",
"@types/react": "^19.2.7",
"@typescript/native-preview": "^7.0.0-dev.20251223.1",
"bunup": "^0.16.10",
"semantic-release": "^25.0.2",
"typescript": "^5.0.0"
}
}