-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.67 KB
/
package.json
File metadata and controls
69 lines (69 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
67
68
69
{
"name": "@inboundemail/inbound-kit",
"version": "1.0.0",
"description": "Infrastructure-as-code CLI tool for Inbound Email - manage email addresses and endpoints declaratively",
"main": "dist/index.js",
"bin": {
"inbound-kit": "dist/cli.js",
"ik": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"type-check": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"prepublishOnly": "bun run build",
"test": "bun test",
"cli": "bun run build && node dist/cli.js"
},
"keywords": [
"inbound",
"email",
"infrastructure",
"cli",
"iac",
"webhook",
"endpoints"
],
"author": "Inbound Email",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/inboundemail/sdk.git",
"directory": "@inboundemail/inbound-kit"
},
"bugs": {
"url": "https://github.com/inboundemail/sdk/issues"
},
"homepage": "https://github.com/inboundemail/sdk/tree/main/@inboundemail/inbound-kit#readme",
"dependencies": {
"@inboundemail/sdk": "workspace:*",
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"chalk": "^5.3.0",
"ora": "^8.0.1",
"inquirer": "^9.2.12",
"diff": "^5.1.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/diff": "^5.0.8",
"@types/inquirer": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"bun-types": "latest",
"eslint": "^8.0.0",
"tsup": "^8.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public"
}
}