@wraps.dev/cli 1.5.5 → 1.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +673 -0
- package/dist/cli.js +4238 -1037
- package/dist/cli.js.map +1 -1
- package/dist/lambda/event-processor/.bundled +1 -1
- package/dist/lambda/sms-event-processor/.bundled +1 -1
- package/package.json +16 -16
|
@@ -1 +1 @@
|
|
|
1
|
-
Bundled at: 2025-12-
|
|
1
|
+
Bundled at: 2025-12-31T00:03:54.332Z
|
|
@@ -1 +1 @@
|
|
|
1
|
-
Bundled at: 2025-12-
|
|
1
|
+
Bundled at: 2025-12-31T00:03:54.335Z
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wraps.dev/cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.3",
|
|
4
4
|
"description": "CLI for deploying Wraps email infrastructure to your AWS account",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/cli.js",
|
|
@@ -24,19 +24,6 @@
|
|
|
24
24
|
"publishConfig": {
|
|
25
25
|
"access": "public"
|
|
26
26
|
},
|
|
27
|
-
"scripts": {
|
|
28
|
-
"dev": "tsup --watch",
|
|
29
|
-
"build": "pnpm build:console && pnpm build:lambda && tsup",
|
|
30
|
-
"build:lambda": "tsx scripts/build-lambda.ts",
|
|
31
|
-
"build:console": "pnpm --filter @wraps/console build",
|
|
32
|
-
"test": "vitest run",
|
|
33
|
-
"test:watch": "vitest --watch",
|
|
34
|
-
"test:ui": "vitest --ui",
|
|
35
|
-
"test:coverage": "vitest run --coverage",
|
|
36
|
-
"typecheck": "tsc --noEmit",
|
|
37
|
-
"lint": "eslint src",
|
|
38
|
-
"prepublishOnly": "pnpm build"
|
|
39
|
-
},
|
|
40
27
|
"keywords": [
|
|
41
28
|
"aws",
|
|
42
29
|
"ses",
|
|
@@ -93,9 +80,22 @@
|
|
|
93
80
|
"tsup": "^8.0.1",
|
|
94
81
|
"tsx": "4.20.6",
|
|
95
82
|
"typescript": "catalog:",
|
|
96
|
-
"vitest": "^4.0.7"
|
|
83
|
+
"vitest": "^4.0.7",
|
|
84
|
+
"@wraps/email-check": "1.0.0"
|
|
97
85
|
},
|
|
98
86
|
"engines": {
|
|
99
87
|
"node": ">=20.0.0"
|
|
88
|
+
},
|
|
89
|
+
"scripts": {
|
|
90
|
+
"dev": "tsup --watch",
|
|
91
|
+
"build": "pnpm build:console && pnpm build:lambda && tsup",
|
|
92
|
+
"build:lambda": "tsx scripts/build-lambda.ts",
|
|
93
|
+
"build:console": "pnpm --filter @wraps/console build",
|
|
94
|
+
"test": "vitest run",
|
|
95
|
+
"test:watch": "vitest --watch",
|
|
96
|
+
"test:ui": "vitest --ui",
|
|
97
|
+
"test:coverage": "vitest run --coverage",
|
|
98
|
+
"typecheck": "tsc --noEmit",
|
|
99
|
+
"lint": "eslint src"
|
|
100
100
|
}
|
|
101
|
-
}
|
|
101
|
+
}
|