rust-cache/package.json

42 lines
1.2 KiB
JSON
Raw Normal View History

2020-09-25 22:42:39 +08:00
{
"private": true,
"name": "rust-cache",
2023-10-21 16:37:46 +08:00
"version": "2.7.1",
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",
"@actions/cache": "^3.2.2",
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
2023-02-24 17:58:39 +08:00
"@actions/glob": "^0.4.0",
"@actions/io": "^1.1.3",
"smol-toml": "1.1.3"
2020-09-25 22:42:39 +08:00
},
"devDependencies": {
2023-10-21 16:36:18 +08:00
"@vercel/ncc": "^0.38.1",
"linefix": "^0.1.1",
"typescript": "5.2.2"
2020-09-25 22:42:39 +08:00
},
"scripts": {
"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
}
}