forked from hanabi1224/sccache-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 959 Bytes
/
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
{
"name": "sccache-action",
"version": "0.0.1",
"description": "A GitHub Action that speeds up Rust compilation with sccache.",
"main": "dist/index.js",
"scripts": {
"build": "yarn build:main && yarn build:post",
"build:main": "ncc build -m --target es2020 -o dist/main src/main.ts",
"build:post": "ncc build -m --target es2020 -o dist/post src/post.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/visvirial/sccache-action.git"
},
"keywords": [
"rust",
"sccache",
"ccache",
"cache"
],
"author": "Masahiko Hyuga <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/visvirial/sccache-action/issues"
},
"homepage": "https://github.com/visvirial/sccache-action#readme",
"devDependencies": {
"@actions/cache": "^3.0.6",
"@actions/core": "^1.10.0",
"@octokit/rest": "^19.0.5",
"@vercel/ncc": "^0.34.0",
"typescript": "^4.8.4"
}
}