-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.13 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.13 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
{
"name": "infisical-secrets-action",
"version": "1.0.7",
"description": "Github action to load secrets from Infisical",
"main": "lib/index.js",
"type": "module",
"scripts": {
"build": "rollup --config rollup.config.js",
"format-check": "prettier --check '**/*.js' --ignore-path ./dist/**"
},
"bugs": {
"url": "https://github.com/Infisical/secrets-action/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Infisical/secrets-action"
},
"keywords": [],
"author": "Infisical",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.10.1",
"@aws-crypto/sha256-js": "^5.2.0",
"@aws-sdk/credential-providers": "^3.758.0",
"@aws-sdk/protocol-http": "^3.370.0",
"@aws-sdk/signature-v4": "^3.370.0",
"axios": "^1.6.8"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.4",
"@types/node": "^24.5.2",
"prettier": "^3.6.2",
"rollup": "^4.52.2",
"rollup-plugin-dts": "^6.2.3",
"typescript": "^5.9.2"
}
}