-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.31 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
{
"name": "gemini-wrapped",
"version": "1.0.3",
"description": "Generate a personalized wrapped-style summary of your Gemini CLI usage",
"repository": {
"type": "git",
"url": "git+https://github.com/jackwotherspoon/gemini-cli-wrapped.git"
},
"type": "module",
"bin": {
"gemini-wrapped": "./bin/gemini-wrapped"
},
"scripts": {
"start": "bun src/index.ts",
"dev": "bun run --watch src/index.ts",
"build": "bun run scripts/build.ts",
"publish": "bun run scripts/publish.ts",
"release": "semantic-release",
"clean": "rm -rf dist",
"postinstall": "bunup"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"@resvg/resvg-js": "^2.6.2",
"@resvg/resvg-wasm": "^2.6.2",
"date-fns": "^3.3.1",
"glob": "^10.3.10",
"react": "^19.2.3",
"satori": "^0.18.3",
"xdg-basedir": "^5.1.0"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.2",
"@semantic-release/npm": "^13.1.3",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/bun": "latest",
"@types/glob": "^8.1.0",
"@types/react": "^19.2.7",
"bunup": "^0.16.10",
"semantic-release": "^25.0.2",
"typescript": "^5.0.0"
}
}