-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.68 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "gh-wrapped-2025",
"version": "1.0.18",
"description": "Your GitHub year in review - in your terminal",
"main": "dist/index.js",
"bin": {
"github-wrapped": "./dist/index.js",
"gh-wrapped-2025": "./dist/index.js"
},
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "bun run src/index.tsx",
"build": "bun build src/index.tsx --outdir dist --target node --minify --external playwright",
"postbuild": "node -e \"const fs = require('fs'); fs.cpSync('src/templates', 'dist/templates', {recursive: true}); fs.cpSync('node_modules/yoga-wasm-web/dist/yoga.wasm', 'dist/yoga.wasm');\"",
"build:types": "tsc --emitDeclarationOnly",
"start": "node dist/index.js",
"prepublishOnly": "bun run build && bun run build:types",
"test": "bun test"
},
"keywords": [
"github",
"wrapped",
"cli",
"terminal",
"stats",
"year-in-review",
"github-stats",
"developer-tools"
],
"author": "d3varaja",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/d3varaja/gh-wrapped-cli.git"
},
"dependencies": {
"@octokit/graphql": "9.0.3",
"@octokit/rest": "^20.0.2",
"dotenv": "^16.6.1",
"ink": "^4.4.1",
"ink-select-input": "^5.0.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^5.0.1",
"playwright": "^1.57.0",
"react": "^18.2.0"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@types/react": "^18.2.45",
"react-devtools-core": "7.0.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0",
"bun": ">=1.0.0"
}
}