unslop-ci 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,73 @@
1
+ {
2
+ "name": "unslop-ci",
3
+ "version": "0.1.0",
4
+ "description": "A diff-aware CI gate for AI slop. Scans only the lines a PR adds for the tells that make code, prose, and UI read as AI-generated, and fails the build when a strong tell lands.",
5
+ "keywords": [
6
+ "ci",
7
+ "lint",
8
+ "ai",
9
+ "llm",
10
+ "slop",
11
+ "unslop",
12
+ "code-review",
13
+ "diff",
14
+ "github-actions",
15
+ "quality-gate"
16
+ ],
17
+ "homepage": "https://github.com/cj-vana/unslop-ci#readme",
18
+ "bugs": {
19
+ "url": "https://github.com/cj-vana/unslop-ci/issues"
20
+ },
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "git+https://github.com/cj-vana/unslop-ci.git"
24
+ },
25
+ "license": "MIT",
26
+ "author": "cj-vana",
27
+ "type": "module",
28
+ "bin": {
29
+ "unslop-ci": "./dist/cli.js"
30
+ },
31
+ "main": "./dist/index.js",
32
+ "module": "./dist/index.js",
33
+ "types": "./dist/index.d.ts",
34
+ "exports": {
35
+ ".": {
36
+ "types": "./dist/index.d.ts",
37
+ "import": "./dist/index.js"
38
+ },
39
+ "./package.json": "./package.json"
40
+ },
41
+ "files": [
42
+ "dist",
43
+ "README.md",
44
+ "LICENSE"
45
+ ],
46
+ "engines": {
47
+ "node": ">=20"
48
+ },
49
+ "scripts": {
50
+ "build": "tsup",
51
+ "dev": "tsup --watch",
52
+ "typecheck": "tsc --noEmit",
53
+ "lint": "eslint .",
54
+ "lint:fix": "eslint . --fix",
55
+ "format": "prettier --write .",
56
+ "format:check": "prettier --check .",
57
+ "test": "vitest run",
58
+ "test:watch": "vitest",
59
+ "test:coverage": "vitest run --coverage",
60
+ "prepublishOnly": "npm run build"
61
+ },
62
+ "devDependencies": {
63
+ "@eslint/js": "^9.17.0",
64
+ "@types/node": "^22.10.2",
65
+ "@vitest/coverage-v8": "^2.1.8",
66
+ "eslint": "^9.17.0",
67
+ "prettier": "^3.4.2",
68
+ "tsup": "^8.3.5",
69
+ "typescript": "^5.7.2",
70
+ "typescript-eslint": "^8.18.1",
71
+ "vitest": "^2.1.8"
72
+ }
73
+ }