rust-cache/package.json

39 lines
1.0 KiB
JSON
Raw Normal View History

2020-09-25 22:42:39 +08:00
{
"private": true,
"name": "rust-cache",
2021-02-16 16:09:13 +08:00
"version": "1.2.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": {
"@actions/cache": "^2.0.2",
2021-12-24 15:55:35 +08:00
"@actions/core": "^1.6.0",
"@actions/exec": "^1.1.1",
"@actions/glob": "^0.2.1",
"@actions/io": "^1.1.2"
2020-09-25 22:42:39 +08:00
},
"devDependencies": {
"@vercel/ncc": "^0.33.3",
"typescript": "4.6.3"
2020-09-25 22:42:39 +08:00
},
"scripts": {
2020-11-07 17:22:23 +08:00
"prepare": "ncc build --target es2020 -o dist/restore src/restore.ts && ncc build --target es2020 -o dist/save src/save.ts"
2020-09-25 22:42:39 +08:00
}
}