@stephendolan/omnifocus-cli 1.0.0 → 1.0.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 +19 -2
  2. package/package.json +20 -6
package/README.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # OmniFocus CLI
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/@stephendolan/omnifocus-cli.svg)](https://www.npmjs.com/package/@stephendolan/omnifocus-cli)
4
+ [![npm downloads](https://img.shields.io/npm/dm/@stephendolan/omnifocus-cli.svg)](https://www.npmjs.com/package/@stephendolan/omnifocus-cli)
5
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
6
+ [![Node.js Version](https://img.shields.io/node/v/@stephendolan/omnifocus-cli.svg)](https://nodejs.org)
7
+ [![Platform](https://img.shields.io/badge/platform-macOS-lightgrey.svg)](https://www.apple.com/macos/)
8
+
3
9
  A powerful command-line interface for OmniFocus on macOS, inspired by the GitHub CLI (`gh`).
4
10
 
5
11
  ## Features
@@ -14,9 +20,20 @@ A powerful command-line interface for OmniFocus on macOS, inspired by the GitHub
14
20
  ## Installation
15
21
 
16
22
  ```bash
23
+ # Install globally
24
+ npm install -g @stephendolan/omnifocus-cli
25
+
26
+ # Or run directly without installing
27
+ npx @stephendolan/omnifocus-cli task list
28
+ ```
29
+
30
+ ### From Source
31
+
32
+ ```bash
33
+ git clone https://github.com/stephendolan/omnifocus-cli.git
34
+ cd omnifocus-cli
17
35
  npm install
18
- npm run build
19
- npm link
36
+ npm run link # Build and link globally
20
37
  ```
21
38
 
22
39
  Now you can use the `of` command anywhere in your terminal.
package/package.json CHANGED
@@ -1,33 +1,47 @@
1
1
  {
2
2
  "name": "@stephendolan/omnifocus-cli",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A command-line interface for OmniFocus on macOS",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
7
7
  "bin": {
8
- "of": "./dist/index.js"
8
+ "of": "dist/index.js"
9
9
  },
10
10
  "scripts": {
11
11
  "build": "tsc",
12
12
  "dev": "tsc --watch",
13
- "start": "node dist/index.js"
13
+ "start": "node dist/index.js",
14
+ "typecheck": "tsc --noEmit",
15
+ "link": "npm run build && npm link"
14
16
  },
15
17
  "keywords": [
16
18
  "omnifocus",
17
19
  "cli",
18
20
  "productivity",
19
- "gtd"
21
+ "gtd",
22
+ "task-management",
23
+ "command-line",
24
+ "macos",
25
+ "jxa"
20
26
  ],
21
- "author": "Stephen Dolan <stephen@stephendolan.com>",
27
+ "author": "Stephen Dolan <https://github.com/stephendolan>",
22
28
  "license": "MIT",
23
29
  "repository": {
24
30
  "type": "git",
25
- "url": "https://github.com/stephendolan/omnifocus-cli.git"
31
+ "url": "git+https://github.com/stephendolan/omnifocus-cli.git"
26
32
  },
27
33
  "homepage": "https://github.com/stephendolan/omnifocus-cli#readme",
28
34
  "bugs": {
29
35
  "url": "https://github.com/stephendolan/omnifocus-cli/issues"
30
36
  },
37
+ "files": [
38
+ "dist",
39
+ "README.md",
40
+ "LICENSE"
41
+ ],
42
+ "engines": {
43
+ "node": ">=18.0.0"
44
+ },
31
45
  "dependencies": {
32
46
  "commander": "^12.1.0",
33
47
  "chalk": "^5.3.0",