clauderan 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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +215 -0
  3. package/dist/index.js +2828 -0
  4. package/package.json +40 -0
package/package.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "clauderan",
3
+ "version": "0.1.0",
4
+ "description": "CLI tool to search and browse Claude Code bash command history",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/Michaelliv/clauderan.git"
10
+ },
11
+ "keywords": [
12
+ "claude",
13
+ "claude-code",
14
+ "bash",
15
+ "history",
16
+ "cli",
17
+ "search"
18
+ ],
19
+ "author": "Michaelliv",
20
+ "bin": {
21
+ "ran": "./dist/index.js"
22
+ },
23
+ "files": [
24
+ "dist"
25
+ ],
26
+ "scripts": {
27
+ "dev": "bun run src/index.ts",
28
+ "build": "bun build --compile --outfile=ran ./src/index.ts",
29
+ "build:npm": "bun build ./src/index.ts --outdir ./dist --target node",
30
+ "test": "bun test",
31
+ "prepublishOnly": "bun run build:npm",
32
+ "postinstall": "echo '\n Run \"ran onboard\" to add ran to ~/.claude/CLAUDE.md\n'"
33
+ },
34
+ "dependencies": {
35
+ "sql.js": "^1.13.0"
36
+ },
37
+ "devDependencies": {
38
+ "@types/bun": "latest"
39
+ }
40
+ }