-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.31 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.31 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
{
"name": "tencentcloud-oidc-auth",
"version": "0.1.0",
"description": "GitHub Action for authenticating to Tencent Cloud with GitHub Actions OIDC tokens.",
"main": "src/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "esbuild src/index.ts --bundle --platform=node --target=node24 --outfile=dist/index.js && esbuild src/cleanup.ts --bundle --platform=node --target=node24 --outfile=dist/cleanup/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/everpcpc/tencentcloud-oidc-auth.git"
},
"keywords": [
"actions",
"tencent cloud",
"credential",
"auth",
"oidc"
],
"author": "everpcpc",
"license": "MIT",
"bugs": {
"url": "https://github.com/everpcpc/tencentcloud-oidc-auth/issues"
},
"homepage": "https://github.com/everpcpc/tencentcloud-oidc-auth#readme",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.1.0",
"axios": "^1.15.0",
"tencentcloud-sdk-nodejs": "^4.1.214"
},
"devDependencies": {
"@types/node": "^25.6.0",
"esbuild": "^0.28.0",
"typescript": "^6.0.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}