-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.67 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.67 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
{
"name": "resend-cli",
"version": "1.6.0",
"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",
"tanstack-intent"
],
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.32.1",
"files": [
"dist/cli.cjs",
"skills/"
],
"type": "module",
"bin": {
"resend": "./dist/cli.cjs"
},
"scripts": {
"dev": "tsx src/cli.ts",
"dev:watch": "tsx --watch src/cli.ts",
"build": "node scripts/build.mjs",
"build:bin": "pnpm build && pkg dist/cli.cjs --compress Brotli --target node24 --output dist/resend",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:e2e": "vitest run --config vitest.config.e2e.ts",
"sync-skill-version": "node scripts/sync-skill-version.mjs",
"version": "pnpm run sync-skill-version && git add skills/resend-cli/SKILL.md",
"prepack": "pnpm run sync-skill-version && pnpm build && node scripts/verify-bundle.mjs"
},
"dependencies": {
"@clack/prompts": "1.1.0",
"@commander-js/extra-typings": "14.0.0",
"commander": "14.0.3",
"picocolors": "1.1.1",
"resend": "6.9.4"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"@biomejs/biome"
]
},
"devDependencies": {
"@biomejs/biome": "2.4.8",
"@types/node": "24.12.0",
"esbuild": "0.27.4",
"tsx": "4.21.0",
"typescript": "5.9.3",
"vitest": "4.1.1",
"@yao-pkg/pkg": "6.14.1"
}
}