-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 801 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 801 Bytes
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
{
"name": "kit-cli",
"version": "1.0.0",
"description": "A fully featured CLI for the Kit (ConvertKit) email marketing API",
"type": "module",
"license": "MIT",
"bin": {
"kit": "./bin/kit.js"
},
"files": [
"bin/",
"src/",
"skills/"
],
"scripts": {
"start": "node bin/kit.js",
"test": "node --test scripts/*.test.js"
},
"keywords": [
"kit",
"convertkit",
"email",
"marketing",
"cli",
"api",
"newsletter",
"subscribers",
"broadcasts",
"claude-code"
],
"repository": {
"type": "git",
"url": "https://github.com/yourusername/kit-cli"
},
"dependencies": {
"chalk": "^5.4.1",
"cli-table3": "^0.6.5",
"commander": "^13.1.0",
"conf": "^13.1.0"
},
"engines": {
"node": ">=18"
}
}