Files

64 lines
1.7 KiB
JSON
Raw Permalink Normal View History

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",
"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": {
"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",
"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": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
2023-08-03 12:43:45 -07:00
"@actions/http-client": "^2.1.0",
"@azure/storage-blob": "^12.15.0",
"@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",
"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"
},
"devDependencies": {
"@types/archiver": "^5.3.2",
2023-12-11 12:24:41 -05:00
"@types/unzip-stream": "^0.3.4",
"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
}