rust-cache/package.json

41 lines
1.1 KiB
JSON
Raw Normal View History

2020-09-25 22:42:39 +08:00
{
"private": true,
"name": "rust-cache",
2023-07-04 01:38:11 +08:00
"version": "2.5.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-05-03 04:03:29 +08:00
"@actions/cache": "^3.2.1",
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
2023-02-24 17:58:39 +08:00
"@actions/glob": "^0.4.0",
"@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",
"linefix": "^0.1.1",
2023-07-31 22:01:23 +08:00
"typescript": "5.1.6"
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
}
}