-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) 路 1.51 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) 路 1.51 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "rs-fmt-check",
"version": "4.0.6",
"type": "module",
"private": true,
"description": "Run rustfmt and annotate the diff with suggested changes",
"main": "dist/index.js",
"scripts": {
"all": "npm run lint && npm run package && npm run test",
"build": "rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
"format": "prettier --write 'src/**/*.ts'",
"lint": "oxlint",
"package": "rm -rf ./dist/* && npm run build",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clechasseur/rs-fmt-check.git"
},
"keywords": [
"actions",
"rust",
"cargo",
"rustfmt"
],
"author": "clechasseur",
"license": "MIT",
"bugs": {
"url": "https://github.com/clechasseur/rs-fmt-check/issues"
},
"dependencies": {
"@actions/core": "^3.0.1",
"@actions/exec": "^3.0.0",
"@clechasseur/rs-actions-core": "^8.0.3",
"string-argv": "^0.3.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@tsconfig/node-lts": "^24.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.13.3",
"jest": "^30.4.2",
"oxlint": "^1.75.0",
"prettier": "^3.9.6",
"rollup": "^4.62.2",
"ts-jest": "^29.4.12",
"typescript": "^6.0.3"
},
"allowScripts": {
"unrs-resolver@1.12.2": true
}
}