agent-eslint-config 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/LICENSE +21 -0
- package/README.md +832 -0
- package/dist/index.d.mts +60 -0
- package/dist/index.mjs +760 -0
- package/package.json +61 -0
package/package.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "agent-eslint-config",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Overly opionated eslint config for agents. Forces them to write low complexity and highly readable code. Supports: Claude, Gemini, Codex and many more.",
|
|
5
|
+
"author": "Vlad Goncharov <vlad.goncharov@neolab.com>",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"homepage": "https://github.com/NeoLabHQ/agent-eslint-config#readme",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/NeoLabHQ/agent-eslint-config.git"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/NeoLabHQ/agent-eslint-config/issues"
|
|
14
|
+
},
|
|
15
|
+
"exports": {
|
|
16
|
+
".": "./dist/index.mjs",
|
|
17
|
+
"./package.json": "./package.json"
|
|
18
|
+
},
|
|
19
|
+
"types": "./dist/index.d.mts",
|
|
20
|
+
"files": [
|
|
21
|
+
"dist"
|
|
22
|
+
],
|
|
23
|
+
"scripts": {
|
|
24
|
+
"build": "tsdown",
|
|
25
|
+
"build:watch": "tsdown --watch",
|
|
26
|
+
"dev": "concurrently -c auto --names build,test npm:build:watch npm:test:watch",
|
|
27
|
+
"verify": "npm run typecheck && npm run test &&npm run test:e2e",
|
|
28
|
+
"lint": "npm run typecheck",
|
|
29
|
+
"test": "vitest --run",
|
|
30
|
+
"test:watch": "vitest",
|
|
31
|
+
"test:e2e": "node scripts/verify-demo-e2e.mjs",
|
|
32
|
+
"typecheck": "tsc --noEmit",
|
|
33
|
+
"prepublishOnly": "npm run build",
|
|
34
|
+
"commit": "cz help",
|
|
35
|
+
"cz": "git add . && cz"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@antfu/eslint-config": "^9.1.0",
|
|
39
|
+
"@typescript-eslint/utils": "^8.62.0",
|
|
40
|
+
"eslint-plugin-jsdoc": "^63.0.9",
|
|
41
|
+
"eslint-plugin-promise": "^7.3.0",
|
|
42
|
+
"eslint-plugin-sonarjs": "^4.1.0",
|
|
43
|
+
"eslint-plugin-unicorn": "65.0.1",
|
|
44
|
+
"eslint-plugin-validate-filename": "^1.2.0",
|
|
45
|
+
"typescript-eslint": "^8.62.0"
|
|
46
|
+
},
|
|
47
|
+
"peerDependencies": {
|
|
48
|
+
"eslint": "^9.10.0 || ^10.0.0"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@types/node": "^25.6.2",
|
|
52
|
+
"@typescript-eslint/rule-tester": "^8.62.0",
|
|
53
|
+
"@typescript/native-preview": "7.0.0-dev.20260509.2",
|
|
54
|
+
"bumpp": "^11.1.0",
|
|
55
|
+
"concurrently": "^10.0.3",
|
|
56
|
+
"eslint": "^10.5.0",
|
|
57
|
+
"tsdown": "^0.22.0",
|
|
58
|
+
"typescript": "^6.0.3",
|
|
59
|
+
"vitest": "^4.1.5"
|
|
60
|
+
}
|
|
61
|
+
}
|