@testmuai/kane-cli 0.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 +202 -0
- package/README.md +30 -0
- package/bin/kane-cli.js +2 -0
- package/dist/ChromeProfilePicker-NRHBZJRY.js +2 -0
- package/dist/CliFeedbackPrompt-LJOQDOID.js +2 -0
- package/dist/CliUploadProgress-3EV5HGWF.js +2 -0
- package/dist/ConfigView-4E5NPHQS.js +2 -0
- package/dist/FolderPicker-ZK7QVPGI.js +2 -0
- package/dist/HelpView-MPSTK26I.js +2 -0
- package/dist/LinksBox-RXFRUHYG.js +2 -0
- package/dist/LoginWizard-UVDCZSNN.js +2 -0
- package/dist/ProfilesView-7OYXY4HR.js +2 -0
- package/dist/ProjectPicker-OKLJAOZL.js +2 -0
- package/dist/WhoamiView-4R3DWFF4.js +2 -0
- package/dist/build-MFETN2BY.js +2 -0
- package/dist/changelog-YMXB4VNK.js +4 -0
- package/dist/chunk-2WSX2LHX.js +2 -0
- package/dist/chunk-3CJ6IY5O.js +2 -0
- package/dist/chunk-3MOK7FWE.js +2 -0
- package/dist/chunk-6YGTRKDT.js +48 -0
- package/dist/chunk-D7CQOCME.js +2 -0
- package/dist/chunk-F7XC3ZB3.js +2 -0
- package/dist/chunk-FVB76465.js +2 -0
- package/dist/chunk-HCBYKLMW.js +41 -0
- package/dist/chunk-KPCYAR4I.js +2 -0
- package/dist/chunk-LOYQCD64.js +2 -0
- package/dist/chunk-NRQDE7HH.js +2 -0
- package/dist/chunk-NYYKIIZC.js +2 -0
- package/dist/chunk-O2HIAIOC.js +83 -0
- package/dist/chunk-Q7JVDEOV.js +239 -0
- package/dist/chunk-QGHQ4STK.js +2 -0
- package/dist/chunk-UR6MHSHU.js +2 -0
- package/dist/chunk-VDHECXMC.js +2 -0
- package/dist/chunk-VYU7IKV4.js +2 -0
- package/dist/chunk-XQBQB3VZ.js +2 -0
- package/dist/chunk-YNF4MUQP.js +2 -0
- package/dist/chunk-YQY5GLZG.js +2 -0
- package/dist/controller-client-PS5GDXE3.js +2 -0
- package/dist/devtools-4SYFVOFF.js +8 -0
- package/dist/exitCleanup-J3GVD6U2.js +2 -0
- package/dist/index.js +76 -0
- package/dist/pipeline-AYK5AZRB.js +2 -0
- package/dist/react-QWOAB3TB.js +2 -0
- package/dist/resolver-L3Z6FAOD.js +2 -0
- package/dist/tms-client-YS6LCK2T.js +2 -0
- package/dist/updater-OI5K5W6B.js +2 -0
- package/dist/version-check-NO7GXGGB.js +2 -0
- package/package.json +53 -0
package/package.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@testmuai/kane-cli",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "KaneAI Terminal UI — browser automation testing agent",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"kane-cli": "./bin/kane-cli.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist/",
|
|
12
|
+
"bin/",
|
|
13
|
+
"LICENSE",
|
|
14
|
+
"README.md"
|
|
15
|
+
],
|
|
16
|
+
"dependencies": {
|
|
17
|
+
"archiver": "^7.0.1",
|
|
18
|
+
"chalk": "^5.3.0",
|
|
19
|
+
"commander": "^12.0.0",
|
|
20
|
+
"ink": "^5.1.0",
|
|
21
|
+
"open": "^10.1.0",
|
|
22
|
+
"react": "^18.3.1",
|
|
23
|
+
"sharp": "^0.34.5"
|
|
24
|
+
},
|
|
25
|
+
"optionalDependencies": {
|
|
26
|
+
"@testmuai/kane-cli-darwin-arm64": "0.2.0",
|
|
27
|
+
"@testmuai/kane-cli-linux-x64": "0.2.0",
|
|
28
|
+
"@testmuai/kane-cli-win-x64": "0.2.0"
|
|
29
|
+
},
|
|
30
|
+
"publishConfig": {
|
|
31
|
+
"registry": "https://registry.npmjs.org",
|
|
32
|
+
"access": "public"
|
|
33
|
+
},
|
|
34
|
+
"repository": {
|
|
35
|
+
"type": "git",
|
|
36
|
+
"url": "git+https://github.com/LambdaTest/kane-cli.git"
|
|
37
|
+
},
|
|
38
|
+
"homepage": "https://github.com/LambdaTest/kane-cli",
|
|
39
|
+
"bugs": {
|
|
40
|
+
"url": "https://github.com/LambdaTest/kane-cli/issues"
|
|
41
|
+
},
|
|
42
|
+
"keywords": [
|
|
43
|
+
"lambdatest",
|
|
44
|
+
"kane",
|
|
45
|
+
"kane-ai",
|
|
46
|
+
"browser-automation",
|
|
47
|
+
"testing",
|
|
48
|
+
"ai",
|
|
49
|
+
"cli"
|
|
50
|
+
],
|
|
51
|
+
"license": "Apache-2.0",
|
|
52
|
+
"private": false
|
|
53
|
+
}
|