rigorrun 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 +87 -0
- package/bin/rigorrun.mjs +47 -0
- package/dist/rigorrun.mjs +16217 -0
- package/package.json +46 -0
- package/ui/assets/DemoPage-B1s79hcz.js +295 -0
- package/ui/assets/Proof-Doh3bIfF.js +1 -0
- package/ui/assets/index-CR8r1ZFu.css +2 -0
- package/ui/assets/index-DAiDcuMt.js +14 -0
- package/ui/index.html +22 -0
package/package.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "rigorrun",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Acceptance testing for tool-using AI agents. Connect your system, show it one job, connect your agent, get a trustworthy pass or fail.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"mcp",
|
|
7
|
+
"model-context-protocol",
|
|
8
|
+
"ai-agents",
|
|
9
|
+
"testing",
|
|
10
|
+
"evaluation",
|
|
11
|
+
"acceptance-testing"
|
|
12
|
+
],
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/Konuktor/rigorrun.git"
|
|
17
|
+
},
|
|
18
|
+
"homepage": "https://rigorrun.pages.dev",
|
|
19
|
+
"type": "module",
|
|
20
|
+
"engines": {
|
|
21
|
+
"node": ">=20.11"
|
|
22
|
+
},
|
|
23
|
+
"bin": {
|
|
24
|
+
"rigorrun": "./bin/rigorrun.mjs"
|
|
25
|
+
},
|
|
26
|
+
"files": [
|
|
27
|
+
"bin/",
|
|
28
|
+
"dist/",
|
|
29
|
+
"ui/",
|
|
30
|
+
"README.md",
|
|
31
|
+
"LICENSE"
|
|
32
|
+
],
|
|
33
|
+
"publishConfig": {
|
|
34
|
+
"access": "public",
|
|
35
|
+
"tag": "latest"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@hono/node-server": "^2.1.1",
|
|
39
|
+
"@modelcontextprotocol/sdk": "^1.30.0",
|
|
40
|
+
"hono": "^4.13.7",
|
|
41
|
+
"zod": "^4.1.12"
|
|
42
|
+
},
|
|
43
|
+
"bugs": {
|
|
44
|
+
"url": "https://github.com/Konuktor/rigorrun/issues"
|
|
45
|
+
}
|
|
46
|
+
}
|