-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.96 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.96 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": "slop-scan",
"version": "0.4.0",
"description": "Deterministic CLI for finding AI-associated slop patterns in JavaScript and TypeScript repositories.",
"keywords": [
"ai",
"cli",
"code-quality",
"static-analysis",
"typescript"
],
"homepage": "https://github.com/benvinegar/slop-scan#readme",
"bugs": {
"url": "https://github.com/benvinegar/slop-scan/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benvinegar/slop-scan.git"
},
"bin": {
"slop-scan": "bin/slop-scan.js"
},
"files": [
"bin",
"dist",
"examples",
"src",
"README.md"
],
"type": "module",
"main": "./dist/node-entry.js",
"types": "./src/node-entry.ts",
"exports": {
".": {
"types": "./src/node-entry.ts",
"import": "./dist/node-entry.js"
}
},
"scripts": {
"build": "bun run scripts/build-cli.ts",
"scan": "bun run src/cli.ts scan .",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"lint": "oxlint . --deny-warnings && bun run lint:self",
"lint:fix": "oxlint . --fix",
"lint:self": "bun run scripts/self-scan-stable.ts",
"lint:self:update": "bun run scripts/self-scan-stable.ts --update",
"test": "bun test",
"prepare": "husky",
"prepack": "bun run build",
"benchmark:fetch": "bun run scripts/benchmark-fetch.ts",
"benchmark:scan": "bun run scripts/benchmark-scan.ts",
"benchmark:report": "bun run scripts/benchmark-report.ts",
"benchmark:history": "bun run scripts/benchmark-history.ts",
"benchmark:rules": "bun run scripts/benchmark-rule-signals.ts",
"benchmark:update": "bun run benchmark:fetch && bun run benchmark:scan && bun run benchmark:report"
},
"dependencies": {
"globby": "^16.2.0",
"typescript": "^5.8.3"
},
"devDependencies": {
"husky": "^9.1.7",
"oxfmt": "^0.44.0",
"oxlint": "^1.59.0",
"slop-scan-stable": "npm:slop-scan@0.1.2"
},
"engines": {
"node": ">=18"
}
}