-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.11 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
{
"name": "@relaykit/cli",
"version": "0.1.5",
"description": "RelayKit CLI - forward webhooks to your local dev server with the same fan-out, retries, and signature verification as production.",
"keywords": [
"webhooks",
"tunnel",
"localhost",
"webhook-testing",
"relaykit"
],
"license": "MIT",
"type": "commonjs",
"publishConfig": {
"access": "public"
},
"bin": {
"relaykit": "dist/index.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/gaurang404/relaykit-cli.git"
},
"scripts": {
"build": "tsup src/index.ts --format cjs --clean --shims",
"prepublishOnly": "npm run build",
"dev": "tsx src/index.ts"
},
"dependencies": {
"@clack/prompts": "^0.9.1",
"commander": "^12.1.0",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@types/node": "^22.9.0",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
}
}