@inboxzero/cli 1.0.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 (3) hide show
  1. package/README.md +115 -0
  2. package/bin/inbox-zero.js +7388 -0
  3. package/package.json +48 -0
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "@inboxzero/cli",
3
+ "version": "1.0.0",
4
+ "description": "CLI tool for setting up and managing Inbox Zero - AI email assistant",
5
+ "type": "module",
6
+ "bin": {
7
+ "inbox-zero": "bin/inbox-zero.js"
8
+ },
9
+ "scripts": {
10
+ "build": "bun build src/main.ts --outfile bin/inbox-zero.js --target node",
11
+ "prepublishOnly": "pnpm build",
12
+ "build:binary": "bun build src/main.ts --compile --outfile dist/inbox-zero",
13
+ "build:binary:all": "pnpm build:binary:macos-arm64 && pnpm build:binary:macos-x64 && pnpm build:binary:linux-x64",
14
+ "build:binary:macos-arm64": "bun build src/main.ts --compile --target=bun-darwin-arm64 --outfile dist/inbox-zero-darwin-arm64",
15
+ "build:binary:macos-x64": "bun build src/main.ts --compile --target=bun-darwin-x64 --outfile dist/inbox-zero-darwin-x64",
16
+ "build:binary:linux-x64": "bun build src/main.ts --compile --target=bun-linux-x64 --outfile dist/inbox-zero-linux-x64",
17
+ "dev": "bun run src/main.ts",
18
+ "test": "vitest run",
19
+ "test:watch": "vitest"
20
+ },
21
+ "dependencies": {
22
+ "@clack/prompts": "0.11.0",
23
+ "commander": "14.0.2"
24
+ },
25
+ "devDependencies": {
26
+ "@types/node": "24.10.1",
27
+ "typescript": "5.9.3",
28
+ "vitest": "4.0.15"
29
+ },
30
+ "files": [
31
+ "bin"
32
+ ],
33
+ "engines": {
34
+ "node": ">=18.0.0"
35
+ },
36
+ "repository": {
37
+ "type": "git",
38
+ "url": "git+https://github.com/elie222/inbox-zero.git",
39
+ "directory": "packages/cli"
40
+ },
41
+ "keywords": [
42
+ "inbox-zero",
43
+ "email",
44
+ "cli",
45
+ "setup"
46
+ ],
47
+ "license": "SEE LICENSE IN ../../LICENSE"
48
+ }