@arthony/keybook 0.1.0 → 0.1.1

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 (2) hide show
  1. package/README.md +2 -3
  2. package/package.json +34 -18
package/README.md CHANGED
@@ -5,6 +5,8 @@ shortcuts and short recipes of your most-used apps. Launch `keybook`,
5
5
  fuzzy-search by intent ("finder new tab", "terminal here"), and learn your
6
6
  shortcuts along the way.
7
7
 
8
+ ![keybook demo: fuzzy-search a shortcut, then a multi-step recipe](docs/demo/keybook.gif)
9
+
8
10
  ## Install
9
11
 
10
12
  ```bash
@@ -78,9 +80,6 @@ first-run seeding), `src/search.ts` (fzf), `src/tui` (Ink components),
78
80
  `src/cli.ts` (commander entry), `seed/` (bundled starter data). Design docs are
79
81
  in `docs/superpowers/`.
80
82
 
81
- If `pnpm lint` reports a missing Biome binary, run `pnpm approve-builds`
82
- (pnpm skips package build scripts by default).
83
-
84
83
  ## License
85
84
 
86
85
  MIT
package/package.json CHANGED
@@ -1,7 +1,9 @@
1
1
  {
2
2
  "name": "@arthony/keybook",
3
- "version": "0.1.0",
4
- "publishConfig": { "access": "public" },
3
+ "version": "0.1.1",
4
+ "publishConfig": {
5
+ "access": "public"
6
+ },
5
7
  "description": "A macOS TUI for searching keyboard shortcuts and recipes of your favorite apps",
6
8
  "keywords": [
7
9
  "cli",
@@ -15,22 +17,27 @@
15
17
  "productivity"
16
18
  ],
17
19
  "homepage": "https://github.com/Ariyapong/keybook#readme",
18
- "repository": { "type": "git", "url": "git+https://github.com/Ariyapong/keybook.git" },
19
- "bugs": { "url": "https://github.com/Ariyapong/keybook/issues" },
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "git+https://github.com/Ariyapong/keybook.git"
23
+ },
24
+ "bugs": {
25
+ "url": "https://github.com/Ariyapong/keybook/issues"
26
+ },
20
27
  "author": "Ariyapong Wimolnoch",
21
28
  "type": "module",
22
- "bin": { "keybook": "dist/cli.js", "kb": "dist/cli.js" },
23
- "files": ["dist", "seed", "README.md", "LICENSE"],
24
- "engines": { "node": ">=22" },
25
- "scripts": {
26
- "build": "tsup",
27
- "dev": "tsx src/cli.ts",
28
- "test": "vitest run",
29
- "test:watch": "vitest",
30
- "typecheck": "tsc --noEmit",
31
- "lint": "biome check .",
32
- "format": "biome format --write .",
33
- "prepublishOnly": "pnpm build"
29
+ "bin": {
30
+ "keybook": "dist/cli.js",
31
+ "kb": "dist/cli.js"
32
+ },
33
+ "files": [
34
+ "dist",
35
+ "seed",
36
+ "README.md",
37
+ "LICENSE"
38
+ ],
39
+ "engines": {
40
+ "node": ">=22"
34
41
  },
35
42
  "dependencies": {
36
43
  "commander": "^12.1.0",
@@ -50,5 +57,14 @@
50
57
  "typescript": "^5.6.0",
51
58
  "vitest": "^2.1.0"
52
59
  },
53
- "license": "MIT"
54
- }
60
+ "license": "MIT",
61
+ "scripts": {
62
+ "build": "tsup",
63
+ "dev": "tsx src/cli.ts",
64
+ "test": "vitest run",
65
+ "test:watch": "vitest",
66
+ "typecheck": "tsc --noEmit",
67
+ "lint": "biome check .",
68
+ "format": "biome format --write ."
69
+ }
70
+ }