2020-09-25 22:42:39 +08:00
|
|
|
{
|
|
|
|
"private": true,
|
|
|
|
"name": "rust-cache",
|
2023-06-18 21:32:29 +08:00
|
|
|
"version": "2.5.0",
|
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-05-03 04:03:29 +08:00
|
|
|
"@actions/cache": "^3.2.1",
|
2022-10-15 03:47:06 +08:00
|
|
|
"@actions/core": "^1.10.0",
|
2022-04-08 23:25:03 +08:00
|
|
|
"@actions/exec": "^1.1.1",
|
2023-02-24 17:58:39 +08:00
|
|
|
"@actions/glob": "^0.4.0",
|
2023-06-18 15:29:44 +08:00
|
|
|
"@actions/io": "^1.1.3",
|
|
|
|
"toml": "^3.0.0"
|
2020-09-25 22:42:39 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-02-24 17:58:39 +08:00
|
|
|
"@vercel/ncc": "^0.36.1",
|
2023-05-12 05:19:46 +08:00
|
|
|
"linefix": "^0.1.1",
|
2023-05-03 04:03:29 +08:00
|
|
|
"typescript": "5.0.4"
|
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
|
|
|
}
|
|
|
|
}
|