runhuman 1.12.0 → 2.2.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 +15 -15
- package/README.md +947 -731
- package/dist/index.js +108 -107
- package/package.json +80 -80
package/package.json
CHANGED
|
@@ -1,80 +1,80 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "runhuman",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "CLI for Runhuman - AI-orchestrated human QA testing",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"type": "module",
|
|
7
|
-
"bin": {
|
|
8
|
-
"runhuman": "dist/index.js"
|
|
9
|
-
},
|
|
10
|
-
"files": [
|
|
11
|
-
"dist/index.js",
|
|
12
|
-
"README.md",
|
|
13
|
-
"LICENSE"
|
|
14
|
-
],
|
|
15
|
-
"publishConfig": {
|
|
16
|
-
"access": "public",
|
|
17
|
-
"registry": "https://registry.npmjs.org/"
|
|
18
|
-
},
|
|
19
|
-
"scripts": {
|
|
20
|
-
"build": "tsup",
|
|
21
|
-
"build:dev": "tsc",
|
|
22
|
-
"dev": "tsc --watch",
|
|
23
|
-
"test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest",
|
|
24
|
-
"test:locked": "../../scripts/with-test-lock.sh npm test",
|
|
25
|
-
"test:watch": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest --watch",
|
|
26
|
-
"test:coverage": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest --coverage",
|
|
27
|
-
"test:unit": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest tests/unit",
|
|
28
|
-
"test:integration": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest tests/integration",
|
|
29
|
-
"type-check": "tsc --noEmit",
|
|
30
|
-
"prepublishOnly": "npm run build"
|
|
31
|
-
},
|
|
32
|
-
"keywords": [
|
|
33
|
-
"runhuman",
|
|
34
|
-
"qa",
|
|
35
|
-
"testing",
|
|
36
|
-
"human-in-the-loop",
|
|
37
|
-
"cli",
|
|
38
|
-
"qa-testing",
|
|
39
|
-
"manual-testing",
|
|
40
|
-
"test-automation",
|
|
41
|
-
"quality-assurance"
|
|
42
|
-
],
|
|
43
|
-
"author": "Runhuman <hey@runhuman.com>",
|
|
44
|
-
"repository": {
|
|
45
|
-
"type": "git",
|
|
46
|
-
"url": "git+https://github.com/volter-ai/runhuman.git",
|
|
47
|
-
"directory": "packages/cli"
|
|
48
|
-
},
|
|
49
|
-
"homepage": "https://runhuman.com",
|
|
50
|
-
"bugs": {
|
|
51
|
-
"url": "https://github.com/volter-ai/runhuman/issues"
|
|
52
|
-
},
|
|
53
|
-
"license": "ISC",
|
|
54
|
-
"engines": {
|
|
55
|
-
"node": ">=18.0.0"
|
|
56
|
-
},
|
|
57
|
-
"dependencies": {
|
|
58
|
-
"axios": "^1.7.9",
|
|
59
|
-
"boxen": "^8.0.1",
|
|
60
|
-
"chalk": "^5.3.0",
|
|
61
|
-
"chokidar": "^5.0.0",
|
|
62
|
-
"cli-table3": "^0.6.5",
|
|
63
|
-
"commander": "^12.1.0",
|
|
64
|
-
"cosmiconfig": "^9.0.0",
|
|
65
|
-
"inquirer": "^10.2.2",
|
|
66
|
-
"open": "^10.1.0",
|
|
67
|
-
"ora": "^8.1.0",
|
|
68
|
-
"zod": "^3.23.8"
|
|
69
|
-
},
|
|
70
|
-
"devDependencies": {
|
|
71
|
-
"@runhuman/shared": "*",
|
|
72
|
-
"@jest/globals": "^29.7.0",
|
|
73
|
-
"@types/inquirer": "^9.0.7",
|
|
74
|
-
"@types/node": "^22.10.2",
|
|
75
|
-
"jest": "^29.7.0",
|
|
76
|
-
"ts-jest": "^29.2.5",
|
|
77
|
-
"tsup": "^8.3.5",
|
|
78
|
-
"typescript": "^5.7.2"
|
|
79
|
-
}
|
|
80
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "runhuman",
|
|
3
|
+
"version": "2.2.0",
|
|
4
|
+
"description": "CLI for Runhuman - AI-orchestrated human QA testing",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"runhuman": "dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist/index.js",
|
|
12
|
+
"README.md",
|
|
13
|
+
"LICENSE"
|
|
14
|
+
],
|
|
15
|
+
"publishConfig": {
|
|
16
|
+
"access": "public",
|
|
17
|
+
"registry": "https://registry.npmjs.org/"
|
|
18
|
+
},
|
|
19
|
+
"scripts": {
|
|
20
|
+
"build": "tsup",
|
|
21
|
+
"build:dev": "tsc",
|
|
22
|
+
"dev": "tsc --watch",
|
|
23
|
+
"test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest",
|
|
24
|
+
"test:locked": "../../scripts/with-test-lock.sh npm test",
|
|
25
|
+
"test:watch": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest --watch",
|
|
26
|
+
"test:coverage": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest --coverage",
|
|
27
|
+
"test:unit": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest tests/unit",
|
|
28
|
+
"test:integration": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest tests/integration",
|
|
29
|
+
"type-check": "tsc --noEmit",
|
|
30
|
+
"prepublishOnly": "npm run build"
|
|
31
|
+
},
|
|
32
|
+
"keywords": [
|
|
33
|
+
"runhuman",
|
|
34
|
+
"qa",
|
|
35
|
+
"testing",
|
|
36
|
+
"human-in-the-loop",
|
|
37
|
+
"cli",
|
|
38
|
+
"qa-testing",
|
|
39
|
+
"manual-testing",
|
|
40
|
+
"test-automation",
|
|
41
|
+
"quality-assurance"
|
|
42
|
+
],
|
|
43
|
+
"author": "Runhuman <hey@runhuman.com>",
|
|
44
|
+
"repository": {
|
|
45
|
+
"type": "git",
|
|
46
|
+
"url": "git+https://github.com/volter-ai/runhuman.git",
|
|
47
|
+
"directory": "packages/cli"
|
|
48
|
+
},
|
|
49
|
+
"homepage": "https://runhuman.com",
|
|
50
|
+
"bugs": {
|
|
51
|
+
"url": "https://github.com/volter-ai/runhuman/issues"
|
|
52
|
+
},
|
|
53
|
+
"license": "ISC",
|
|
54
|
+
"engines": {
|
|
55
|
+
"node": ">=18.0.0"
|
|
56
|
+
},
|
|
57
|
+
"dependencies": {
|
|
58
|
+
"axios": "^1.7.9",
|
|
59
|
+
"boxen": "^8.0.1",
|
|
60
|
+
"chalk": "^5.3.0",
|
|
61
|
+
"chokidar": "^5.0.0",
|
|
62
|
+
"cli-table3": "^0.6.5",
|
|
63
|
+
"commander": "^12.1.0",
|
|
64
|
+
"cosmiconfig": "^9.0.0",
|
|
65
|
+
"inquirer": "^10.2.2",
|
|
66
|
+
"open": "^10.1.0",
|
|
67
|
+
"ora": "^8.1.0",
|
|
68
|
+
"zod": "^3.23.8"
|
|
69
|
+
},
|
|
70
|
+
"devDependencies": {
|
|
71
|
+
"@runhuman/shared": "*",
|
|
72
|
+
"@jest/globals": "^29.7.0",
|
|
73
|
+
"@types/inquirer": "^9.0.7",
|
|
74
|
+
"@types/node": "^22.10.2",
|
|
75
|
+
"jest": "^29.7.0",
|
|
76
|
+
"ts-jest": "^29.2.5",
|
|
77
|
+
"tsup": "^8.3.5",
|
|
78
|
+
"typescript": "^5.7.2"
|
|
79
|
+
}
|
|
80
|
+
}
|