forked from ziptied/bento-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.64 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
{
"name": "@bentonow/bento-cli",
"version": "0.1.6",
"description": "Command-line interface for Bento email marketing. Manage subscribers, tags, events, and broadcasts from your terminal.",
"type": "module",
"bin": {
"bento": "./bin/bento"
},
"files": [
"bin",
"dist",
"skill",
"LICENSE",
"README.md"
],
"scripts": {
"dev": "bun run src/cli.ts",
"build": "bun run scripts/build.ts",
"test": "bun test",
"lint": "biome check .",
"format": "biome format --write .",
"prepublishOnly": "bun test && bun run build"
},
"dependencies": {
"@bentonow/bento-node-sdk": "2.0.0",
"@inquirer/prompts": "8.2.0",
"chalk": "5.6.2",
"commander": "^12.1.0",
"csv-parse": "6.1.0",
"env-paths": "^3.0.0",
"ora": "9.1.0",
"tty-table": "5.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "latest"
},
"engines": {
"node": ">=18.0.0",
"bun": ">=1.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bentonow/bento-cli.git"
},
"homepage": "https://github.com/bentonow/bento-cli#readme",
"bugs": {
"url": "https://github.com/bentonow/bento-cli/issues"
},
"keywords": [
"bento",
"email",
"marketing",
"cli",
"newsletter",
"subscribers",
"automation",
"email-marketing"
],
"author": {
"name": "Zachary Oakes",
"email": "zachary.oakes@gmail.com"
},
"contributors": [
{
"name": "Zachary Oakes",
"email": "zachary.oakes@gmail.com"
}
],
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}