-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 936 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 936 Bytes
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
{
"name": "ci-parallelizer",
"version": "0.0.0-0",
"dependencies": {
"@(-.-)/env": "^0.3.2",
"@aws-sdk/client-dynamodb": "^3.525.0",
"@aws-sdk/client-s3": "^3.577.0",
"@aws-sdk/client-sqs": "^3.425.0",
"execa": "^8.0.1",
"lodash-es": "^4.17.21",
"p-map": "^6.0.0",
"yargs": "^17.7.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"@types/lodash-es": "^4.17.9",
"@types/node": "18.x",
"@types/yargs": "^17.0.26",
"tsup": "^7.2.0",
"tsx": "^3.13.0",
"typescript": "^5.2.2"
},
"type": "module",
"scripts": {
"build": "tsup src/main.ts --format esm --sourcemap",
"dev": "tsup src/main.ts --format esm --sourcemap --watch",
"typecheck": "tsc"
},
"packageManager": "pnpm@9.1.1+sha256.9551e803dcb7a1839fdf5416153a844060c7bce013218ce823410532504ac10b",
"bin": "./dist/main.js",
"files": [
"src",
"dist"
]
}