shellrecap 0.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/LICENSE +21 -0
- package/README.md +198 -0
- package/dist/cli.cjs +1611 -0
- package/dist/cli.js +1590 -0
- package/dist/index.cjs +1308 -0
- package/dist/index.d.cts +314 -0
- package/dist/index.d.ts +314 -0
- package/dist/index.js +1244 -0
- package/package.json +71 -0
package/package.json
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "shellrecap",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Spotify Wrapped for your terminal — a shareable recap of your shell history (zsh/bash/fish), generated 100% locally. Top commands, your peak hour, typos, alias suggestions with keystrokes saved, and secrets accidentally left in your history (masked). Nothing uploaded, ever.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.js",
|
|
13
|
+
"require": "./dist/index.cjs"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"bin": {
|
|
17
|
+
"shellrecap": "./dist/cli.js"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist"
|
|
21
|
+
],
|
|
22
|
+
"engines": {
|
|
23
|
+
"node": ">=18"
|
|
24
|
+
},
|
|
25
|
+
"scripts": {
|
|
26
|
+
"build": "tsup",
|
|
27
|
+
"test": "vitest run",
|
|
28
|
+
"test:watch": "vitest",
|
|
29
|
+
"typecheck": "tsc --noEmit",
|
|
30
|
+
"lint": "tsc --noEmit",
|
|
31
|
+
"example": "node dist/cli.js scan examples/sample.zsh_history --tz 540",
|
|
32
|
+
"prepublishOnly": "npm run build"
|
|
33
|
+
},
|
|
34
|
+
"keywords": [
|
|
35
|
+
"shell",
|
|
36
|
+
"terminal",
|
|
37
|
+
"wrapped",
|
|
38
|
+
"terminal-wrapped",
|
|
39
|
+
"spotify-wrapped",
|
|
40
|
+
"zsh",
|
|
41
|
+
"bash",
|
|
42
|
+
"fish",
|
|
43
|
+
"history",
|
|
44
|
+
"shell-history",
|
|
45
|
+
"stats",
|
|
46
|
+
"alias",
|
|
47
|
+
"recap",
|
|
48
|
+
"year-in-review",
|
|
49
|
+
"cli"
|
|
50
|
+
],
|
|
51
|
+
"author": "didrod205 (https://github.com/didrod205)",
|
|
52
|
+
"license": "MIT",
|
|
53
|
+
"repository": {
|
|
54
|
+
"type": "git",
|
|
55
|
+
"url": "git+https://github.com/didrod205/shellrecap.git"
|
|
56
|
+
},
|
|
57
|
+
"bugs": {
|
|
58
|
+
"url": "https://github.com/didrod205/shellrecap/issues"
|
|
59
|
+
},
|
|
60
|
+
"homepage": "https://github.com/didrod205/shellrecap#readme",
|
|
61
|
+
"dependencies": {
|
|
62
|
+
"cac": "^6.7.14",
|
|
63
|
+
"picocolors": "^1.1.1"
|
|
64
|
+
},
|
|
65
|
+
"devDependencies": {
|
|
66
|
+
"@types/node": "^22.10.0",
|
|
67
|
+
"tsup": "^8.3.5",
|
|
68
|
+
"typescript": "^5.7.2",
|
|
69
|
+
"vitest": "^2.1.8"
|
|
70
|
+
}
|
|
71
|
+
}
|