forked from resend/resend-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.02 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.02 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
{
"name": "resend-cli",
"version": "1.2.2",
"description": "The official CLI for Resend",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/resend/resend-cli"
},
"homepage": "https://github.com/resend/resend-cli#readme",
"keywords": [
"cli",
"resend",
"email",
"api"
],
"packageManager": "bun@1.3.10",
"type": "module",
"bin": {
"resend": "./src/cli.ts"
},
"scripts": {
"dev": "bun run src/cli.ts",
"dev:watch": "bun --watch src/cli.ts",
"build": "bun build --compile --minify --sourcemap --bytecode src/cli.ts --outfile dist/resend",
"lint": "biome check",
"format": "biome format --write",
"typecheck": "tsc --noEmit",
"test": "bun test tests/commands tests/lib"
},
"dependencies": {
"commander": "14.0.3",
"@commander-js/extra-typings": "14.0.0",
"resend": "6.9.3",
"@clack/prompts": "1.1.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@types/bun": "1.3.10",
"typescript": "5.9.3"
}
}