-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.26 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
{
"name": "slop-lint",
"version": "0.8.0",
"description": "Zero-dependency linter that flags AI 'slop' in prose: fails on the em-dash, warns on LLM tells (words, cliches, constructions).",
"type": "module",
"bin": {
"slop-lint": "./slop-lint.mjs"
},
"exports": "./slop-lint.mjs",
"files": [
"slop-lint.mjs"
],
"engines": {
"node": ">=18"
},
"scripts": {
"test": "node --test",
"lint": "node slop-lint.mjs README.md",
"discover": "node slop-lint.mjs --discover --samples corpus/samples --baseline corpus/baseline",
"generate": "node --env-file-if-exists=.env generate-samples.mjs",
"baseline": "node build-baseline.mjs",
"stats": "node corpus-stats.mjs",
"specimens": "node specimen-coverage.mjs",
"refresh": "node refresh.mjs"
},
"keywords": [
"lint",
"linter",
"llm",
"ai",
"ai-detection",
"ai-slop",
"slop",
"writing",
"prose",
"style",
"editorial",
"em-dash",
"markdown"
],
"repository": {
"type": "git",
"url": "git+https://github.com/eric-sabe/slop-lint.git"
},
"bugs": {
"url": "https://github.com/eric-sabe/slop-lint/issues"
},
"homepage": "https://github.com/eric-sabe/slop-lint#readme",
"license": "MIT",
"author": "eric-sabe"
}