forked from actions-rs/clippy-check
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
89 lines (89 loc) · 3.2 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"private": false,
"name": "@actions-rs-plus/clippy-check",
"version": "0.0.0",
"author": "actions-rs-plus",
"license": "MIT",
"description": "Run clippy and annotate the diff with errors and warnings",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"type": "module",
"files": [
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts"
],
"scripts": {
"build": "ncc build src/index.ts --source-map --target es2022 && mkdir -p dist/.matchers && cp matchers/rust.json dist/.matchers/rust.json",
"watch": "ncc build src/index.ts --watch",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write .",
"clean": "rm -rf ./dist/* && rm tsconfig.tsbuildinfo && npm run build",
"test": "vitest --coverage.enabled=true",
"deps:ci": "depcruise --config dependency-cruiser.config.mjs --output-type err src",
"deps:graph": "depcruise --config dependency-cruiser.config.mjs --output-type dot src | dot -T svg > dependency-graph.svg",
"deps:report": "depcruise --config dependency-cruiser.config.mjs --output-type err-html --output-to dependency-report.html src",
"postversion": "cp package.json package-lock.json ..",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions-rs-plus/clippy-check.git"
},
"keywords": [
"actions",
"rust",
"cargo"
],
"bugs": {
"url": "https://github.com/actions-rs-plus/core/issues"
},
"devDependencies": {
"@codecov/vite-plugin": "1.7.0",
"@eslint/js": "9.17.0",
"@stylistic/eslint-plugin-ts": "2.12.1",
"@types/eslint": "9.6.1",
"@types/node": "20.17.11",
"@types/semver": "7.5.8",
"@vercel/ncc": "0.38.3",
"@vitest/coverage-v8": "2.1.8",
"@vitest/ui": "2.1.8",
"conventional-changelog-conventionalcommits": "8.0.0",
"dependency-cruiser": "16.8.0",
"eslint": "9.17.0",
"eslint-config-love": "101.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-node": "0.3.9",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-import-x": "4.6.1",
"eslint-plugin-n": "17.15.1",
"eslint-plugin-perfectionist": "4.5.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-unicorn": "56.0.1",
"husky": "9.1.7",
"lint-staged": "15.3.0",
"prettier": "3.4.2",
"semantic-release": "24.2.1",
"typescript": "5.7.2",
"typescript-eslint": "8.18.2",
"vite": "5.4.11",
"vite-tsconfig-paths": "5.1.4",
"vitest": "2.1.8"
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run test:lint:fix",
"depcruise --validate -- "
]
},
"dependencies": {
"@actions-rs-plus/core": "0.2.4",
"@actions/core": "1.11.1",
"@actions/exec": "1.1.1",
"string-argv": "0.3.2"
},
"overrides": {}
}