-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 917 Bytes
/
package.json
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
{
"name": "yandex-serverless-action",
"version": "2.1.0",
"description": "Github action for deploy static website to Yandex Object Storage",
"main": "dist/index.js",
"scripts": {
"build": "ncc build index.ts -o dist",
"dev": "ts-node --files dev.ts",
"test": "vitest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@actions/core": "1.10.0",
"@aws-sdk/client-s3": "3.310.0",
"async": "3.2.4",
"glob": "10.0.0",
"mime-types": "2.1.35",
"minimatch": "9.0.0"
},
"devDependencies": {
"@types/async": "3.2.18",
"@types/glob": "8.1.0",
"@types/mime-types": "2.1.1",
"@types/node": "18.15.11",
"@vercel/ncc": "0.36.1",
"dotenv": "16.0.3",
"ts-node": "10.9.1",
"typescript": "5.0.4",
"vitest": "0.30.1"
}
}