-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.25 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.25 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
{
"name": "piping-bag",
"version": "0.0.1",
"description": "Helper scripts for data collection at The Michigan Daily",
"types": "dist/config.d.ts",
"bin": {
"pipe": "./dist/pipe.js"
},
"repository": "https://github.com/MichiganDaily/piping-bag",
"author": {
"name": "Marie Yu"
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"prepare": "pnpm run build && pnpm pack"
},
"files": [
"dist/"
],
"exports": {
".": "./dist/config.js",
"./lib/schema": "./dist/lib/schema.js",
"./types": "./dist/types.js"
},
"license": "MIT",
"private": true,
"type": "module",
"dependencies": {
"@aws-sdk/client-iam": "^3.1035.0",
"@aws-sdk/client-lambda": "^3.1000.0",
"@aws-sdk/client-s3": "^3.1049.0",
"@aws-sdk/client-scheduler": "^3.1035.0",
"@aws-sdk/credential-providers": "^3.1035.0",
"@aws-sdk/types": "^3.973.8",
"@inquirer/prompts": "^8.3.0",
"@js-temporal/polyfill": "^0.5.1",
"archiver": "^7.0.1",
"commander": "^14.0.3",
"dotenv": "^17.3.1",
"esbuild": "^0.27.4",
"find-up": "^8.0.0"
},
"devDependencies": {
"@types/archiver": "^7.0.0",
"@types/node": "^25.9.0",
"eslint": "^10.0.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
}
}