-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
39 lines (39 loc) · 1.07 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
{
"name": "cargo-install",
"version": "3.1.1",
"description": "GitHub action for cache-efficient Rust crates installation",
"author": "baptiste0928",
"license": "ISC",
"packageManager": "[email protected]",
"scripts": {
"check": "tsc",
"lint": "eslint src",
"format": "prettier . !pnpm-lock.yaml !dist --write",
"format:check": "prettier . !pnpm-lock.yaml !dist --check",
"package": "esbuild src/index.ts --bundle --platform=node --target=node20 --outfile=dist/index.js"
},
"dependencies": {
"@actions/cache": "^3.2.4",
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/http-client": "^2.2.1",
"@actions/io": "^1.1.3",
"chalk": "^5.3.0",
"semver": "^7.6.2",
"string-argv": "^0.3.2",
"valibot": "^0.33.3"
},
"devDependencies": {
"@types/node": "^20.14.8",
"@types/semver": "^7.5.8",
"esbuild": "^0.21.5",
"eslint": "^8.57.0",
"prettier": "^3.3.2",
"typescript": "^5.5.2",
"typescript-eslint": "^7.13.1"
},
"prettier": {
"arrowParens": "avoid",
"singleQuote": true
}
}