-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.51 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.51 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
{
"name": "@stephendolan/omnifocus-cli",
"version": "2.5.0",
"description": "A command-line interface for OmniFocus on macOS",
"main": "dist/cli.js",
"type": "module",
"bin": {
"of": "dist/cli.js"
},
"scripts": {
"build": "bun run tsup",
"dev": "bun run src/cli.ts",
"start": "bun dist/cli.js",
"lint": "bun run oxlint src",
"format": "bun run biome format --write src",
"format:check": "bun run biome format src",
"typecheck": "bun run tsc --noEmit",
"test": "bun run vitest run",
"link": "bun run build && bun link",
"prepublishOnly": "bun run build"
},
"keywords": [
"omnifocus",
"cli",
"productivity",
"gtd",
"task-management",
"command-line",
"macos",
"jxa"
],
"author": "Stephen Dolan <https://github.com/stephendolan>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/stephendolan/omnifocus-cli.git"
},
"homepage": "https://github.com/stephendolan/omnifocus-cli#readme",
"bugs": {
"url": "https://github.com/stephendolan/omnifocus-cli/issues"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"bun": ">=1.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"commander": "^14.0.2",
"dayjs": "^1.11.19",
"zod": "^4.3.5"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@types/bun": "latest",
"oxlint": "^1.38.0",
"tsup": "^8.0.0",
"typescript": "^5.7.2",
"vitest": "^4.0.14"
}
}