-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.21 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
{
"name": "rustfmt-check",
"version": "0.4.1",
"description": "\"GitHub Action for PR annotations with rustfmt checks\"",
"main": "lib/src/main.js",
"scripts": {
"build": "tsc",
"lint": "yarn biome lint ./src",
"lint:fix": "yarn biome lint --apply ./src",
"fmt": "yarn biome format --write ./src",
"fmt:check": "yarn biome format ./src",
"pack": "ncc build --source-map --license LICENSE",
"test": "jest --runInBand",
"release": "yarn format:fix && yarn lint:fix && yarn build && yarn pack"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/LoliGothick/rustfmt-check/issues"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/core-js": "2.5.8",
"@types/node": "22.10.7",
"@vercel/ncc": "0.38.3",
"typescript": "^5.0.0"
},
"dependencies": {
"@actions/core": "^1.4.0",
"@actions/exec": "^1.1.0",
"@actions/github": "^6.0.0",
"outdent": "^0.8.0",
"string-argv": "^0.3.1"
},
"volta": {
"node": "22.13.0",
"yarn": "1.22.22"
},
"packageManager": "yarn@1.22.22"
}