-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.05 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.05 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "anti-slop",
"description": "A GitHub action that detects and automatically closes low-quality and AI slop PRs.",
"version": "0.3.0",
"author": "peaklabs-dev",
"type": "module",
"private": true,
"homepage": "https://github.com/peakoss/anti-slop",
"repository": {
"type": "git",
"url": "https://github.com/peakoss/anti-slop.git"
},
"bugs": {
"url": "https://github.com/peakoss/anti-slop/issues"
},
"keywords": [
"ai",
"ai-slop",
"ai-slop-detection",
"anti-slop",
"anti-spam",
"contributor-metrics",
"github",
"github-action",
"pull-request",
"pull-requests",
"quality",
"quality-check",
"quality-checker",
"quality-checks",
"quality-control",
"slop-detector",
"spam-detection",
"spam-filtering",
"spam-prevention"
],
"license": "AGPL-3.0-only",
"engines": {
"node": ">=24.0.0"
},
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@github/local-action": "^7.0.1",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@octokit/webhooks-types": "^7.6.1",
"@types/node": "^25.5.0",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0",
"prettier": "3.8.1",
"tsdown": "^0.21.7",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.0"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"format": "bunx --bun prettier --config prettier.config.ts --cache --cache-strategy metadata --write .",
"lint": "bunx --bun eslint --config eslint.config.ts --cache --cache-location node_modules/.cache/eslint --concurrency auto --fix --color .",
"check": "bunx --bun tsc --noEmit",
"test:format": "bunx --bun prettier --config prettier.config.ts --cache --cache-strategy metadata --check .",
"test:lint": "bunx --bun eslint --config eslint.config.ts --cache --cache-location node_modules/.cache/eslint --concurrency auto --max-warnings 1 --color .",
"test": "local-action . src/main.ts .env",
"test:all": "bun run check && bun run test:lint && bun run test:format"
}
}