2020-02-11 09:49:46 -05:00
|
|
|
{
|
|
|
|
|
"name": "@actions/artifact",
|
2025-03-17 14:08:42 +00:00
|
|
|
"version": "2.3.2",
|
2020-02-11 09:49:46 -05:00
|
|
|
"preview": true,
|
|
|
|
|
"description": "Actions artifact lib",
|
|
|
|
|
"keywords": [
|
|
|
|
|
"github",
|
|
|
|
|
"actions",
|
|
|
|
|
"artifact"
|
|
|
|
|
],
|
2020-07-21 11:33:05 -04:00
|
|
|
"homepage": "https://github.com/actions/toolkit/tree/main/packages/artifact",
|
2020-02-11 09:49:46 -05:00
|
|
|
"license": "MIT",
|
2023-08-17 12:32:55 -04:00
|
|
|
"main": "lib/artifact.js",
|
|
|
|
|
"types": "lib/artifact.d.ts",
|
2020-02-11 09:49:46 -05:00
|
|
|
"directories": {
|
|
|
|
|
"lib": "lib",
|
|
|
|
|
"test": "__tests__"
|
|
|
|
|
},
|
|
|
|
|
"files": [
|
2020-06-04 15:14:19 -04:00
|
|
|
"lib",
|
|
|
|
|
"!.DS_Store"
|
2020-02-11 09:49:46 -05:00
|
|
|
],
|
|
|
|
|
"publishConfig": {
|
|
|
|
|
"access": "public"
|
|
|
|
|
},
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "git+https://github.com/actions/toolkit.git",
|
|
|
|
|
"directory": "packages/artifact"
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
2020-07-14 16:05:53 -04:00
|
|
|
"audit-moderate": "npm install && npm audit --json --audit-level=moderate > audit.json",
|
2023-12-01 00:31:27 +00:00
|
|
|
"test": "cd ../../ && npm run test ./packages/artifact",
|
2023-08-03 16:36:11 -04:00
|
|
|
"bootstrap": "cd ../../ && npm run bootstrap",
|
|
|
|
|
"tsc-run": "tsc",
|
2023-12-07 12:57:20 -05:00
|
|
|
"tsc": "npm run bootstrap && npm run tsc-run",
|
|
|
|
|
"gen:docs": "typedoc --plugin typedoc-plugin-markdown --out docs/generated src/artifact.ts --githubPages false --readme none"
|
2020-02-11 09:49:46 -05:00
|
|
|
},
|
|
|
|
|
"bugs": {
|
|
|
|
|
"url": "https://github.com/actions/toolkit/issues"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2023-08-03 13:34:41 -04:00
|
|
|
"@actions/core": "^1.10.0",
|
2023-08-17 14:40:33 -04:00
|
|
|
"@actions/github": "^5.1.1",
|
2023-08-03 12:43:45 -07:00
|
|
|
"@actions/http-client": "^2.1.0",
|
2023-08-10 15:28:41 -04:00
|
|
|
"@azure/storage-blob": "^12.15.0",
|
2023-08-17 14:40:33 -04:00
|
|
|
"@octokit/core": "^3.5.1",
|
|
|
|
|
"@octokit/plugin-request-log": "^1.0.4",
|
|
|
|
|
"@octokit/plugin-retry": "^3.0.9",
|
2023-08-22 09:57:14 -07:00
|
|
|
"@octokit/request-error": "^5.0.0",
|
2023-08-03 12:43:45 -07:00
|
|
|
"@protobuf-ts/plugin": "^2.2.3-alpha.1",
|
2024-04-09 18:02:48 +00:00
|
|
|
"archiver": "^7.0.1",
|
2023-08-09 11:26:33 -07:00
|
|
|
"jwt-decode": "^3.1.2",
|
2023-12-11 12:24:41 -05:00
|
|
|
"unzip-stream": "^0.3.1"
|
2020-04-23 20:52:53 +02:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2023-08-10 15:28:41 -04:00
|
|
|
"@types/archiver": "^5.3.2",
|
2023-12-11 12:24:41 -05:00
|
|
|
"@types/unzip-stream": "^0.3.4",
|
2023-12-07 12:57:20 -05:00
|
|
|
"typedoc": "^0.25.4",
|
|
|
|
|
"typedoc-plugin-markdown": "^3.17.1",
|
2023-09-08 14:29:27 +00:00
|
|
|
"typescript": "^5.2.2"
|
2020-02-11 09:49:46 -05:00
|
|
|
}
|
2024-04-19 15:08:30 +00:00
|
|
|
}
|