forked from kawasaki2013/setup-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
39
40
41
42
{
"name": "setup-rust",
"version": "0.0.0",
"private": true,
"description": "Setup rust",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "ncc -C build",
"all": "npm run format && npm run lint && npm run build && npm run pack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ATiltedtree/setup-rust.git"
},
"keywords": [
"actions",
"rust",
"setup"
],
"author": "ATiltedTree",
"license": "MIT",
"dependencies": {
"@actions/cache": "^3.2.1",
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1"
},
"devDependencies": {
"@types/node": "18.15.7",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.36.0",
"prettier": "^2.8.7",
"typescript": "^5.0.2"
}
}