2020-09-25 22:42:39 +08:00
|
|
|
{
|
|
|
|
"private": true,
|
|
|
|
"name": "rust-cache",
|
2024-10-12 18:15:11 +08:00
|
|
|
"version": "2.7.5",
|
2020-10-04 00:39:38 +08:00
|
|
|
"description": "A GitHub Action that implements smart caching for rust/cargo projects with sensible defaults.",
|
2020-09-25 22:42:39 +08:00
|
|
|
"keywords": [
|
|
|
|
"actions",
|
|
|
|
"rust",
|
|
|
|
"cache"
|
|
|
|
],
|
|
|
|
"author": "Arpad Borsos <arpad.borsos@googlemail.com>",
|
|
|
|
"license": "LGPL-3.0",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/Swatinem/rust-cache.git"
|
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/Swatinem/rust-cache/issues"
|
|
|
|
},
|
2020-10-21 15:43:08 +08:00
|
|
|
"funding": {
|
|
|
|
"url": "https://github.com/sponsors/Swatinem"
|
|
|
|
},
|
2020-09-25 22:42:39 +08:00
|
|
|
"homepage": "https://github.com/Swatinem/rust-cache#readme",
|
|
|
|
"dependencies": {
|
2023-08-20 16:26:24 +08:00
|
|
|
"@actions/buildjet-cache": "npm:github-actions.cache-buildjet@0.2.0",
|
2024-02-04 16:29:45 +08:00
|
|
|
"@actions/cache": "^3.2.4",
|
2024-10-12 18:14:29 +08:00
|
|
|
"@actions/core": "^1.11.1",
|
2022-04-08 23:25:03 +08:00
|
|
|
"@actions/exec": "^1.1.1",
|
2024-10-12 18:14:29 +08:00
|
|
|
"@actions/glob": "^0.5.0",
|
2023-06-18 15:29:44 +08:00
|
|
|
"@actions/io": "^1.1.3",
|
2024-10-12 18:14:29 +08:00
|
|
|
"smol-toml": "^1.3.0"
|
2020-09-25 22:42:39 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-10-12 18:14:29 +08:00
|
|
|
"@types/node": "^22.7.5",
|
|
|
|
"@vercel/ncc": "^0.38.2",
|
2023-05-12 05:19:46 +08:00
|
|
|
"linefix": "^0.1.1",
|
2024-10-12 18:14:29 +08:00
|
|
|
"typescript": "5.6.3"
|
2020-09-25 22:42:39 +08:00
|
|
|
},
|
|
|
|
"scripts": {
|
2023-05-12 05:19:46 +08:00
|
|
|
"prepare": "ncc build --target es2020 -o dist/restore src/restore.ts && ncc build --target es2020 -o dist/save src/save.ts && linefix dist"
|
2020-09-25 22:42:39 +08:00
|
|
|
}
|
|
|
|
}
|