2020-05-06 11:10:18 -04:00
|
|
|
{
|
|
|
|
|
"name": "@actions/cache",
|
2025-09-04 14:16:27 +01:00
|
|
|
"version": "5.0.0",
|
2020-05-06 11:10:18 -04:00
|
|
|
"preview": true,
|
2020-05-06 20:07:39 -04:00
|
|
|
"description": "Actions cache lib",
|
2020-05-06 11:10:18 -04:00
|
|
|
"keywords": [
|
|
|
|
|
"github",
|
|
|
|
|
"actions",
|
|
|
|
|
"cache"
|
|
|
|
|
],
|
2020-07-21 11:33:05 -04:00
|
|
|
"homepage": "https://github.com/actions/toolkit/tree/main/packages/cache",
|
2020-05-06 11:10:18 -04:00
|
|
|
"license": "MIT",
|
|
|
|
|
"main": "lib/cache.js",
|
|
|
|
|
"types": "lib/cache.d.ts",
|
|
|
|
|
"directories": {
|
|
|
|
|
"lib": "lib",
|
|
|
|
|
"test": "__tests__"
|
|
|
|
|
},
|
|
|
|
|
"files": [
|
2020-06-04 15:14:19 -04:00
|
|
|
"lib",
|
|
|
|
|
"!.DS_Store"
|
2020-05-06 11:10:18 -04:00
|
|
|
],
|
|
|
|
|
"publishConfig": {
|
|
|
|
|
"access": "public"
|
|
|
|
|
},
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "git+https://github.com/actions/toolkit.git",
|
|
|
|
|
"directory": "packages/cache"
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
2020-07-14 16:05:53 -04:00
|
|
|
"audit-moderate": "npm install && npm audit --json --audit-level=moderate > audit.json",
|
2020-05-06 11:10:18 -04:00
|
|
|
"test": "echo \"Error: run tests from root\" && exit 1",
|
2025-03-10 06:51:30 -07:00
|
|
|
"tsc": "tsc"
|
2020-05-06 11:10:18 -04:00
|
|
|
},
|
|
|
|
|
"bugs": {
|
|
|
|
|
"url": "https://github.com/actions/toolkit/issues"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2025-12-10 11:27:38 +00:00
|
|
|
"@actions/core": "^2.0.0",
|
|
|
|
|
"@actions/exec": "^2.0.0",
|
|
|
|
|
"@actions/glob": "^0.5.0",
|
2025-08-07 03:21:24 -07:00
|
|
|
"@protobuf-ts/runtime-rpc": "^2.11.1",
|
2025-12-10 11:27:38 +00:00
|
|
|
"@actions/http-client": "^3.0.0",
|
|
|
|
|
"@actions/io": "^2.0.0",
|
2022-10-17 18:05:26 -07:00
|
|
|
"@azure/abort-controller": "^1.1.0",
|
2025-12-10 11:23:06 +00:00
|
|
|
"@azure/core-rest-pipeline": "^1.22.0",
|
2023-03-06 11:55:21 +00:00
|
|
|
"@azure/storage-blob": "^12.13.0",
|
2025-01-27 17:52:55 +00:00
|
|
|
"semver": "^6.3.1"
|
2020-05-06 11:10:18 -04:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2025-07-31 23:37:22 +01:00
|
|
|
"@types/node": "^24.1.0",
|
2020-05-18 16:33:15 -04:00
|
|
|
"@types/semver": "^6.0.0",
|
2025-07-28 07:58:41 -07:00
|
|
|
"@protobuf-ts/plugin": "^2.9.4",
|
2023-09-08 14:29:27 +00:00
|
|
|
"typescript": "^5.2.2"
|
2025-09-25 13:03:33 +01:00
|
|
|
},
|
|
|
|
|
"overrides": {
|
2025-10-13 18:00:34 +01:00
|
|
|
"uri-js": "npm:uri-js-replace@^1.0.1",
|
|
|
|
|
"node-fetch": "^3.3.2"
|
2020-05-06 11:10:18 -04:00
|
|
|
}
|
2025-07-28 07:58:41 -07:00
|
|
|
}
|