-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.14 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 3.14 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "ruleprobe-ai",
"version": "2.12.0",
"description": "Test whether your repo AI instructions actually survive execution.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/canblmz1/ruleProb.git"
},
"homepage": "https://github.com/canblmz1/ruleProb#readme",
"bugs": {
"url": "https://github.com/canblmz1/ruleProb/issues"
},
"files": [
"dist",
"docs",
"examples",
"README.md",
"CHANGELOG.md",
"SECURITY.md",
"CONTRIBUTING.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./integrations": {
"types": "./dist/integrations/index.d.ts",
"import": "./dist/integrations/index.js"
},
"./integrations/express": {
"types": "./dist/integrations/express.d.ts",
"import": "./dist/integrations/express.js"
},
"./integrations/next": {
"types": "./dist/integrations/next.d.ts",
"import": "./dist/integrations/next.js"
}
},
"keywords": [
"ai",
"agents",
"claude-md",
"agents-md",
"cursor-rules",
"copilot-instructions",
"ai-instruction-testing",
"llm-compliance",
"benchmark",
"cli",
"compliance",
"claude",
"instructions",
"testing",
"ruleprobe"
],
"engines": {
"node": ">=18"
},
"pnpm": {
"overrides": {
"esbuild": ">=0.25.0"
}
},
"bin": {
"ruleprobe": "dist/cli/index.js"
},
"scripts": {
"build": "tsup",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"lint": "eslint src tests",
"lint:fix": "eslint src tests --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"benchmark": "tsx src/cli/index.ts benchmark --fixtures-only",
"pack:check": "npm pack --dry-run --json",
"dev": "tsx src/cli/index.ts",
"demo": "tsx src/cli/index.ts run examples/basic --provider mock",
"demo:dry": "tsx src/cli/index.ts run examples/basic --provider dry-run",
"demo:openrouter": "tsx src/cli/index.ts run examples/basic --provider openrouter",
"list-rules": "tsx src/cli/index.ts list-rules examples/basic"
},
"dependencies": {
"@clack/prompts": "^1.4.0",
"chalk": "^5.3.0",
"chokidar": "^5.0.0",
"commander": "^12.0.0",
"dotenv": "^17.4.2",
"execa": "^8.0.1",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"ink": "^5.2.1",
"js-yaml": "^4.1.1",
"minimatch": "^9.0.3",
"react": "^18.3.1"
},
"optionalDependencies": {
"chart.js": "^4.5.1",
"@xenova/transformers": "^2.17.2"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.11.24",
"@types/react": "^18.3.29",
"@typescript-eslint/eslint-plugin": "^8.59.2",
"@typescript-eslint/parser": "^8.59.2",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.3",
"tsup": "^8.0.2",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"vitest": "^2.1.9"
}
}