-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.69 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.69 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
72
{
"name": "ruleprobe",
"version": "4.5.0",
"description": "Translate instruction files into ESLint configs, detect drift, and extract rules",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"ruleprobe": "dist/cli.js"
},
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"audit": "npm audit --audit-level=moderate",
"collect": "tsx scripts/dataset/collect.ts"
},
"keywords": [
"ai",
"coding-agent",
"eslint",
"drift-detection",
"instruction-adherence",
"CLAUDE.md",
"AGENTS.md",
"cursorrules",
"lint-config",
"rule-extraction"
],
"author": "Brad (Aftermath Technologies)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/moonrunnerkc/ruleprobe.git"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"action.yml",
"action-scripts",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"dependencies": {
"chalk": "5.6.2",
"commander": "12.1.0",
"glob": "11.1.0",
"tree-sitter-go": "0.25.0",
"tree-sitter-javascript": "0.25.0",
"tree-sitter-python": "0.25.0",
"tree-sitter-typescript": "0.23.2",
"ts-morph": "24.0.0",
"web-tree-sitter": "0.26.8"
},
"devDependencies": {
"@types/node": "22.19.17",
"@typescript-eslint/eslint-plugin": "8.59.2",
"@typescript-eslint/parser": "8.59.2",
"eslint": "9.39.4",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsdoc": "62.9.0",
"eslint-plugin-unicorn": "64.0.0",
"tsx": "4.21.0",
"typescript": "5.9.3",
"vitest": "2.1.9"
}
}