mirror of
https://github.com/actions/toolkit.git
synced 2026-08-07 00:00:18 +02:00
Bumps [brace-expansion](https://github.com/juliangruber/brace-expansion) to 5.0.8 and updates ancestor dependency [archiver](https://github.com/archiverjs/node-archiver). These dependencies need to be updated together. Updates `brace-expansion` from 5.0.6 to 5.0.8 - [Release notes](https://github.com/juliangruber/brace-expansion/releases) - [Commits](https://github.com/juliangruber/brace-expansion/compare/v5.0.6...v5.0.8) Updates `archiver` from 7.0.1 to 8.0.0 - [Release notes](https://github.com/archiverjs/node-archiver/releases) - [Changelog](https://github.com/archiverjs/node-archiver/blob/master/CHANGELOG.md) - [Commits](https://github.com/archiverjs/node-archiver/compare/7.0.1...8.0.0) --- updated-dependencies: - dependency-name: archiver dependency-version: 8.0.0 dependency-type: direct:production - dependency-name: brace-expansion dependency-version: 5.0.8 dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]>
77 lines
2.1 KiB
JSON
77 lines
2.1 KiB
JSON
{
|
|
"name": "@actions/artifact",
|
|
"version": "6.2.2",
|
|
"preview": true,
|
|
"description": "Actions artifact lib",
|
|
"keywords": [
|
|
"github",
|
|
"actions",
|
|
"artifact"
|
|
],
|
|
"homepage": "https://github.com/actions/toolkit/tree/main/packages/artifact",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"main": "lib/artifact.js",
|
|
"types": "lib/artifact.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./lib/artifact.d.ts",
|
|
"import": "./lib/artifact.js"
|
|
}
|
|
},
|
|
"directories": {
|
|
"lib": "lib",
|
|
"test": "__tests__"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"!.DS_Store"
|
|
],
|
|
"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",
|
|
"test": "cd ../../ && npm run test ./packages/artifact",
|
|
"bootstrap": "cd ../../ && npm run bootstrap",
|
|
"tsc-run": "tsc && cp src/internal/shared/package-version.cjs lib/internal/shared/",
|
|
"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"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/actions/toolkit/issues"
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "^3.0.1",
|
|
"@actions/github": "^9.1.1",
|
|
"@actions/http-client": "^4.0.1",
|
|
"@azure/storage-blob": "^12.31.0",
|
|
"@octokit/core": "^7.0.6",
|
|
"@octokit/plugin-request-log": "^6.0.0",
|
|
"@octokit/plugin-retry": "^8.1.0",
|
|
"@octokit/request": "^10.0.8",
|
|
"@octokit/request-error": "^7.1.0",
|
|
"@protobuf-ts/runtime": "^2.11.1",
|
|
"archiver": "^8.0.0",
|
|
"jwt-decode": "^4.0.0",
|
|
"unzip-stream": "^0.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@protobuf-ts/plugin": "^2.11.1",
|
|
"@types/archiver": "^7.0.0",
|
|
"@types/unzip-stream": "^0.3.4",
|
|
"typedoc": "^0.28.19",
|
|
"typedoc-plugin-markdown": "^4.11.0",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"overrides": {
|
|
"uri-js": "npm:uri-js-replace@^1.0.1",
|
|
"node-fetch": "^3.3.2"
|
|
}
|
|
}
|