forked from Swatinem/rust-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.02 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"private": true,
"name": "rust-cache",
"version": "1.2.0",
"description": "A GitHub Action that implements smart caching for rust/cargo projects with sensible defaults.",
"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"
},
"funding": {
"url": "https://github.com/sponsors/Swatinem"
},
"homepage": "https://github.com/Swatinem/rust-cache#readme",
"dependencies": {
"@actions/cache": "^1.0.7",
"@actions/core": "^1.4.0",
"@actions/exec": "^1.1.0",
"@actions/glob": "^0.2.0",
"@actions/io": "^1.1.1"
},
"devDependencies": {
"@vercel/ncc": "^0.28.6",
"typescript": "^4.3.4"
},
"scripts": {
"prepare": "ncc build --target es2020 -o dist/restore src/restore.ts && ncc build --target es2020 -o dist/save src/save.ts"
}
}