@awsless/awsless 0.0.1
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/dist/bin.cjs +2411 -0
- package/dist/bin.d.ts +1 -0
- package/dist/bin.js +2389 -0
- package/dist/chunk-6KILQ5DR.js +15 -0
- package/dist/index.cjs +32 -0
- package/dist/index.d.ts +989 -0
- package/dist/index.js +6 -0
- package/package.json +57 -0
package/dist/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@awsless/awsless",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/awsless/awsless.git"
|
|
9
|
+
},
|
|
10
|
+
"bugs": {
|
|
11
|
+
"url": "https://github.com/awsless/awsless/issues"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"dist"
|
|
15
|
+
],
|
|
16
|
+
"bin": "./dist/bin.cjs",
|
|
17
|
+
"main": "./dist/index.cjs",
|
|
18
|
+
"module": "./dist/index.js",
|
|
19
|
+
"types": "./dist/index.d.ts",
|
|
20
|
+
"exports": {
|
|
21
|
+
".": {
|
|
22
|
+
"require": "./dist/index.cjs",
|
|
23
|
+
"import": "./dist/index.js",
|
|
24
|
+
"types": "./dist/index.d.ts"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"@aws-sdk/client-cloudformation": "^3.369.0",
|
|
29
|
+
"@aws-sdk/client-s3": "^3.369.0",
|
|
30
|
+
"@aws-sdk/client-ssm": "3.329.0",
|
|
31
|
+
"@aws-sdk/client-sts": "^3.369.0",
|
|
32
|
+
"@aws-sdk/credential-providers": "^3.369.0",
|
|
33
|
+
"@types/react": "^18.2.15",
|
|
34
|
+
"aws-cdk-lib": "^2.87.0",
|
|
35
|
+
"aws-cron-expression-validator": "^1.0.5",
|
|
36
|
+
"chalk": "^5.3.0",
|
|
37
|
+
"change-case": "^4.1.2",
|
|
38
|
+
"commander": "^9.4.1",
|
|
39
|
+
"filesize": "^10.0.7",
|
|
40
|
+
"ink": "^4.3.0",
|
|
41
|
+
"ink-spinner": "^5.0.0",
|
|
42
|
+
"ink-table": "^3.0.0",
|
|
43
|
+
"ink-text-input": "^5.0.1",
|
|
44
|
+
"jszip": "^3.10.1",
|
|
45
|
+
"react": "^18.2.0",
|
|
46
|
+
"ts-import": "5.0.0-beta.0",
|
|
47
|
+
"zod": "^3.21.4",
|
|
48
|
+
"@awsless/code": "^0.0.10"
|
|
49
|
+
},
|
|
50
|
+
"scripts": {
|
|
51
|
+
"test": "pnpm code test",
|
|
52
|
+
"term": "zsh -c 'node dist/bin.js ${*} --config-file=./test/_data/config.ts' --",
|
|
53
|
+
"berm": "zsh -c 'pnpm build; node dist/bin.js ${*} --config-file=./test/_data/config.ts' --",
|
|
54
|
+
"build": "pnpm tsup src/index.ts src/bin.ts --format cjs,esm --dts --clean",
|
|
55
|
+
"prepublish": "if pnpm test schema; then pnpm build; else exit; fi"
|
|
56
|
+
}
|
|
57
|
+
}
|