-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.19 KB
/
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
34
35
36
37
38
39
40
{
"name": "alibabacloud-oidc-auth",
"version": "0.1.0",
"description": "GitHub Action for authenticating to Alibaba Cloud with GitHub Actions OIDC tokens.",
"main": "src/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "ncc build src/index.ts --source-map --license LICENSE -o dist && ncc build src/post.ts --source-map --license LICENSE -o dist/post"
},
"repository": {
"type": "git",
"url": "https://github.com/mozillazg/alibabacloud-oidc-auth.git"
},
"keywords": [
"actions",
"alibaba cloud",
"credential",
"auth",
"oidc"
],
"author": "mozillazg",
"license": "MIT",
"bugs": {
"url": "https://github.com/mozillazg/alibabacloud-oidc-auth/issues"
},
"homepage": "https://github.com/mozillazg/alibabacloud-oidc-auth#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@alicloud/credentials": "^2.2.6",
"@alicloud/openapi-client": "^0.4.6",
"@alicloud/sts20150401": "^1.1.3",
"@alicloud/tea-util": "^1.4.7",
"@google-github-actions/actions-utils": "^0.7.0"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"typescript": "^5.3.3"
}
}