-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.66 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.66 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
{
"name": "@soliantconsulting/sidecar-deploy-utils",
"version": "1.5.0",
"description": "Deploy utilities for Sidecars",
"repository": {
"type": "git",
"url": "git+https://github.com/soliantconsulting/sidecar-deploy-utils.git"
},
"type": "module",
"author": "Soliant Consulting",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"dist/**/*",
"assets/**/*"
],
"bin": {
"sidecar-deploy": "dist/bin.js"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"scripts": {
"build": "tsc && pnpm minify ./assets/copy-handler.js > ./assets/copy-handler.min.js",
"format": "biome format . --write",
"check": "biome check . --write"
},
"devDependencies": {
"@biomejs/biome": "2.4.11",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@tsconfig/node24": "^24.0.4",
"@types/node": "^24.12.2",
"aws-cdk-lib": "^2.248.0",
"constructs": "^10.6.0",
"lefthook": "^2.1.5",
"minify": "^15.2.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
},
"dependencies": {
"@aws-crypto/sha256-js": "^5.2.0",
"@aws-sdk/client-cloudformation": "^3.1028.0",
"@aws-sdk/client-s3": "^3.1028.0",
"@aws-sdk/client-ssm": "^3.1028.0",
"@aws-sdk/client-sts": "^3.1028.0",
"@aws-sdk/credential-provider-node": "^3.972.30",
"@smithy/protocol-http": "^5.3.13",
"@smithy/signature-v4": "^5.3.13"
},
"peerDependencies": {
"aws-cdk-lib": "^2.248.0"
},
"packageManager": "pnpm@10.33.0"
}