-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.51 KB
/
Copy pathpackage.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": "imessage-cli",
"version": "0.2.0",
"description": "Provider-neutral command-line interface for iMessage infrastructure",
"author": "jmisilo",
"keywords": [
"imessage",
"cli",
"messaging",
"automation",
"ai-agents"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jmisilo/imessage-sdk.git",
"directory": "packages/cli"
},
"homepage": "https://imessage-sdk.dev",
"bugs": {
"url": "https://github.com/jmisilo/imessage-sdk/issues"
},
"license": "MIT",
"type": "module",
"sideEffects": false,
"files": [
"dist",
"LICENSE",
"README.md"
],
"bin": {
"imessage-cli": "./dist/cli.js"
},
"exports": {
"./package.json": "./package.json"
},
"engines": {
"node": "^20.19.0 || ^22.13.0 || >=24"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:integration": "pnpm build && node test/run-integration.mjs",
"test:watch": "vitest",
"typecheck": "tsc --project tsconfig.json --noEmit"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"dependencies": {
"@hono/node-server": "^2.0.10",
"@imessage-sdk/blooio": "workspace:^",
"@imessage-sdk/comms": "workspace:^",
"@imessage-sdk/photon": "workspace:^",
"@imessage-sdk/sendblue": "workspace:^",
"@inquirer/prompts": "^8.5.2",
"@napi-rs/keyring": "^1.3.0",
"clipanion": "3.2.1",
"hono": "^4.12.30",
"imessage-sdk": "workspace:^",
"zod": "^4.4.3"
}
}