-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
143 lines (143 loc) · 3.47 KB
/
Copy pathpackage.json
File metadata and controls
143 lines (143 loc) · 3.47 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "@linqapp/cli",
"version": "2.5.2",
"description": "CLI for Linq messaging API",
"type": "module",
"bin": {
"linq": "./bin/run.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/bin",
"/dist",
"/oclif.manifest.json"
],
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"dev": "./bin/dev.js",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"postpack": "rm -f oclif.manifest.json",
"prepack": "npm run build && oclif manifest",
"test": "vitest run",
"test:watch": "vitest",
"pack:macos": "oclif pack macos",
"pack:win": "oclif pack win",
"pack:deb": "oclif pack deb",
"prepare": "lefthook install || true"
},
"oclif": {
"bin": "linq",
"dirname": "linq",
"commands": {
"strategy": "pattern",
"target": "./dist/commands"
},
"helpClass": "./dist/help.js",
"hooks": {
"prerun": "./dist/hooks/prerun.js",
"postrun": "./dist/hooks/postrun.js"
},
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-autocomplete"
],
"topicSeparator": " ",
"targets": [
"darwin-x64",
"darwin-arm64",
"linux-x64",
"linux-arm64",
"win32-x64",
"win32-arm64"
],
"macos": {
"identifier": "com.linqapp.cli"
},
"topics": {
"chats": {
"description": "Manage chats and conversations"
},
"messages": {
"description": "Send and manage messages"
},
"webhooks": {
"description": "Manage webhook subscriptions"
},
"profile": {
"description": "Manage CLI profiles"
},
"attachments": {
"description": "Manage file attachments"
},
"tokens": {
"description": "Manage API tokens"
},
"contacts": {
"description": "Manage shared-line contacts"
}
}
},
"dependencies": {
"@inquirer/prompts": "^8.2.0",
"@linqapp/sdk": "^0.31.0",
"@oclif/core": "^4.8.0",
"@oclif/plugin-autocomplete": "^3.2.40",
"@oclif/plugin-help": "^6.2.37",
"@sentry/node": "^10.38.0",
"@types/react": "^19.2.14",
"@types/ws": "^8.18.1",
"chalk": "^5.6.2",
"ink": "^7.0.3",
"open": "^11.0.0",
"react": "^19.2.6",
"ws": "^8.20.0"
},
"devDependencies": {
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@eslint/js": "^9.39.2",
"@oclif/test": "^4.1.16",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^25.2.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"lefthook": "^2.1.0",
"oclif": "^4.22.79",
"prettier": "^3.8.1",
"semantic-release": "^25.0.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.55.0",
"vitest": "^4.0.18"
},
"keywords": [
"linq",
"cli",
"messaging",
"imessage",
"sms"
],
"license": "Apache-2.0",
"author": "Josh Flayhart <josh.flayhart@linqapp.com>",
"homepage": "https://github.com/linq-team/linq-cli#readme",
"repository": {
"type": "git",
"url": "https://github.com/linq-team/linq-cli.git"
},
"bugs": {
"url": "https://github.com/linq-team/linq-cli/issues"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}