clean-slop 2.0.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,105 @@
1
+ {
2
+ "name": "clean-slop",
3
+ "version": "2.0.0",
4
+ "description": "A production readiness engine for modern JavaScript and TypeScript projects. Prevents low-quality, insecure, and AI-generated code from reaching production.",
5
+ "keywords": [
6
+ "linter",
7
+ "security",
8
+ "code-quality",
9
+ "static-analysis",
10
+ "ai",
11
+ "production-readiness",
12
+ "typescript",
13
+ "javascript",
14
+ "cli",
15
+ "devtools"
16
+ ],
17
+ "homepage": "https://github.com/aaks-hath/clean-slop#readme",
18
+ "bugs": {
19
+ "url": "https://github.com/aaks-hath/clean-slop/issues"
20
+ },
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "git+https://github.com/aaks-hath/clean-slop.git"
24
+ },
25
+ "license": "MIT",
26
+ "author": "clean-slop contributors",
27
+ "type": "module",
28
+ "exports": {
29
+ ".": {
30
+ "types": "./dist/index.d.ts",
31
+ "import": "./dist/index.js",
32
+ "require": "./dist/index.cjs"
33
+ },
34
+ "./cli": {
35
+ "types": "./dist/cli/index.d.ts",
36
+ "import": "./dist/cli/index.js"
37
+ }
38
+ },
39
+ "main": "./dist/index.cjs",
40
+ "module": "./dist/index.js",
41
+ "types": "./dist/index.d.ts",
42
+ "bin": {
43
+ "clean-slop": "./dist/cli/bin.js"
44
+ },
45
+ "files": [
46
+ "dist",
47
+ "README.md",
48
+ "LICENSE",
49
+ "CHANGELOG.md"
50
+ ],
51
+ "scripts": {
52
+ "build": "tsup",
53
+ "build:watch": "tsup --watch",
54
+ "clean": "rimraf dist",
55
+ "dev": "tsx src/cli/bin.ts",
56
+ "format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
57
+ "format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
58
+ "lint": "eslint src tests --ext .ts",
59
+ "lint:fix": "eslint src tests --ext .ts --fix",
60
+ "prebuild": "npm run clean",
61
+ "prepare": "npm run build",
62
+ "release": "npm run build && npm publish --access public",
63
+ "test": "vitest run",
64
+ "test:coverage": "vitest run --coverage",
65
+ "test:watch": "vitest",
66
+ "typecheck": "tsc --noEmit"
67
+ },
68
+ "dependencies": {
69
+ "@babel/parser": "^7.23.0",
70
+ "@typescript-eslint/typescript-estree": "^6.13.0",
71
+ "chalk": "^5.3.0",
72
+ "commander": "^11.1.0",
73
+ "cosmiconfig": "^9.0.0",
74
+ "fast-glob": "^3.3.2",
75
+ "ignore": "^5.3.0",
76
+ "is-binary-path": "^2.1.0",
77
+ "js-yaml": "^4.1.0",
78
+ "ora": "^7.0.1",
79
+ "semver": "^7.5.4",
80
+ "strip-ansi": "^7.1.0",
81
+ "table": "^6.8.1"
82
+ },
83
+ "devDependencies": {
84
+ "@types/js-yaml": "^4.0.9",
85
+ "@types/node": "^20.10.0",
86
+ "@types/semver": "^7.5.6",
87
+ "@typescript-eslint/eslint-plugin": "^6.13.0",
88
+ "@typescript-eslint/parser": "^6.13.0",
89
+ "@vitest/coverage-v8": "^1.0.0",
90
+ "eslint": "^8.54.0",
91
+ "prettier": "^3.1.0",
92
+ "rimraf": "^5.0.5",
93
+ "tsup": "^8.0.0",
94
+ "tsx": "^4.6.0",
95
+ "typescript": "^5.3.0",
96
+ "vitest": "^1.0.0"
97
+ },
98
+ "engines": {
99
+ "node": ">=18.0.0"
100
+ },
101
+ "publishConfig": {
102
+ "access": "public",
103
+ "registry": "https://registry.npmjs.org/"
104
+ }
105
+ }