@growthub/cli 0.14.0 → 0.14.2
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/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/app/api/workspace/helper/apply/route.js +99 -2
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/app/api/workspace/helper/query/route.js +1 -0
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/app/api/workspace/sandbox-agent-auth/login/route.js +3 -2
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/app/api/workspace/sandbox-agent-auth/logout/route.js +3 -2
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/app/api/workspace/sandbox-agent-auth/status/route.js +3 -2
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/app/api/workspace/sandbox-run/route.js +84 -10
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/app/components/WorkspaceHelperSetupModal.jsx +2 -2
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/app/data-model/components/AgentSwarmPanel.jsx +107 -34
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/app/data-model/components/DataModelShell.jsx +72 -15
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/app/data-model/components/HelperSidecar.jsx +264 -22
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/app/data-model/components/OrchestrationGraphCanvas.jsx +81 -10
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/app/data-model/components/OrchestrationNodeConfigPanel.jsx +179 -117
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/app/data-model/components/SandboxAgentAuthPanel.jsx +34 -14
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/app/data-model/components/SidecarExpandView.jsx +37 -0
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/app/data-model/components/SwarmRunCockpit.jsx +625 -0
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/app/data-model/components/helper-commands.js +150 -0
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/app/globals.css +136 -3
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/app/workflows/WorkflowSurface.jsx +61 -13
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/docs/sandbox-environment-primitive.md +26 -0
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/lib/adapters/sandboxes/adapters/local-intelligence-browser-access.js +516 -0
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/lib/adapters/sandboxes/default-local-agent-host.js +224 -11
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/lib/adapters/sandboxes/default-local-intelligence.js +4 -0
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/lib/adapters/sandboxes/default-local-process.js +3 -1
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/lib/adapters/sandboxes/index.js +1 -0
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/lib/adapters/sandboxes/sandbox-adapter-registry.js +5 -1
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/lib/data-model/field-contracts.js +1 -0
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/lib/orchestration-agent-swarm.js +254 -4
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/lib/orchestration-graph-runner.js +3 -0
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/lib/orchestration-graph.js +10 -2
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/lib/orchestration-run-console.js +412 -1
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/lib/sandbox-agent-auth.js +82 -27
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/lib/sandbox-serverless-flow.js +4 -2
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/lib/workspace-data-model.js +1 -0
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/lib/workspace-helper.js +23 -0
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/lib/workspace-metadata-store.js +8 -6
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/lib/workspace-schema.js +6 -0
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/lib/workspace-swarm-proposal.js +554 -0
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/package-lock.json +364 -0
- package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/package.json +1 -0
- package/package.json +1 -1
package/assets/worker-kits/growthub-custom-workspace-starter-v1/apps/workspace/package-lock.json
CHANGED
|
@@ -8,9 +8,11 @@
|
|
|
8
8
|
"name": "growthub-workspace-app",
|
|
9
9
|
"version": "1.0.0",
|
|
10
10
|
"dependencies": {
|
|
11
|
+
"@nangohq/node": "^0.70.4",
|
|
11
12
|
"@tanstack/react-table": "^8.21.3",
|
|
12
13
|
"lucide-react": "^0.468.0",
|
|
13
14
|
"next": "^16.2.6",
|
|
15
|
+
"playwright-core": "^1.60.0",
|
|
14
16
|
"react": "19.2.4",
|
|
15
17
|
"react-dom": "19.2.4",
|
|
16
18
|
"react-markdown": "^9.0.1",
|
|
@@ -493,6 +495,30 @@
|
|
|
493
495
|
"url": "https://opencollective.com/libvips"
|
|
494
496
|
}
|
|
495
497
|
},
|
|
498
|
+
"node_modules/@nangohq/node": {
|
|
499
|
+
"version": "0.70.6",
|
|
500
|
+
"resolved": "https://registry.npmjs.org/@nangohq/node/-/node-0.70.6.tgz",
|
|
501
|
+
"integrity": "sha512-rFeMLiSBok4eK/C0dL93QwUXVndjAFGFNcTxYHOI1EN1j/aIhy+Y+OsMUdhgaH/K6vt8J4zpCfNt1BF9zyvlzw==",
|
|
502
|
+
"license": "SEE LICENSE IN LICENSE FILE IN GIT REPOSITORY",
|
|
503
|
+
"dependencies": {
|
|
504
|
+
"@nangohq/types": "0.70.6",
|
|
505
|
+
"axios": "1.16.1"
|
|
506
|
+
},
|
|
507
|
+
"engines": {
|
|
508
|
+
"node": ">=20.0"
|
|
509
|
+
}
|
|
510
|
+
},
|
|
511
|
+
"node_modules/@nangohq/types": {
|
|
512
|
+
"version": "0.70.6",
|
|
513
|
+
"resolved": "https://registry.npmjs.org/@nangohq/types/-/types-0.70.6.tgz",
|
|
514
|
+
"integrity": "sha512-i5vanKB23Ez8v20DZnJPeOZxcYjiZJkmV/cCOL0CvFCdi4MWs9bDFcMgRX1+EeLcs8Fm7DuLOWj3fMnQvOlcPg==",
|
|
515
|
+
"license": "SEE LICENSE IN LICENSE FILE IN GIT REPOSITORY",
|
|
516
|
+
"dependencies": {
|
|
517
|
+
"axios": "1.16.1",
|
|
518
|
+
"json-schema": "0.4.0",
|
|
519
|
+
"type-fest": "4.41.0"
|
|
520
|
+
}
|
|
521
|
+
},
|
|
496
522
|
"node_modules/@next/env": {
|
|
497
523
|
"version": "16.2.6",
|
|
498
524
|
"resolved": "https://registry.npmjs.org/@next/env/-/env-16.2.6.tgz",
|
|
@@ -739,6 +765,36 @@
|
|
|
739
765
|
"integrity": "sha512-mUFwbeTqrVgDQxFveS+df2yfap6iuP20NAKAsBt5jDEoOTDew+zwLAOilHCeQJOVSvmgCX4ogqIrA0mnyr08yQ==",
|
|
740
766
|
"license": "ISC"
|
|
741
767
|
},
|
|
768
|
+
"node_modules/agent-base": {
|
|
769
|
+
"version": "6.0.2",
|
|
770
|
+
"resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
|
|
771
|
+
"integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
|
|
772
|
+
"license": "MIT",
|
|
773
|
+
"dependencies": {
|
|
774
|
+
"debug": "4"
|
|
775
|
+
},
|
|
776
|
+
"engines": {
|
|
777
|
+
"node": ">= 6.0.0"
|
|
778
|
+
}
|
|
779
|
+
},
|
|
780
|
+
"node_modules/asynckit": {
|
|
781
|
+
"version": "0.4.0",
|
|
782
|
+
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
|
|
783
|
+
"integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
|
|
784
|
+
"license": "MIT"
|
|
785
|
+
},
|
|
786
|
+
"node_modules/axios": {
|
|
787
|
+
"version": "1.16.1",
|
|
788
|
+
"resolved": "https://registry.npmjs.org/axios/-/axios-1.16.1.tgz",
|
|
789
|
+
"integrity": "sha512-caYkukvroVPO8KrzuJEb50Hm07KwfBZPEC3VeFHTsqWHvKTsy54hjJz9BS/cdaypROE2rH6xvm9mHX4fgWkr3A==",
|
|
790
|
+
"license": "MIT",
|
|
791
|
+
"dependencies": {
|
|
792
|
+
"follow-redirects": "^1.16.0",
|
|
793
|
+
"form-data": "^4.0.5",
|
|
794
|
+
"https-proxy-agent": "^5.0.1",
|
|
795
|
+
"proxy-from-env": "^2.1.0"
|
|
796
|
+
}
|
|
797
|
+
},
|
|
742
798
|
"node_modules/bail": {
|
|
743
799
|
"version": "2.0.2",
|
|
744
800
|
"resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz",
|
|
@@ -761,6 +817,19 @@
|
|
|
761
817
|
"node": ">=6.0.0"
|
|
762
818
|
}
|
|
763
819
|
},
|
|
820
|
+
"node_modules/call-bind-apply-helpers": {
|
|
821
|
+
"version": "1.0.2",
|
|
822
|
+
"resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
|
|
823
|
+
"integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
|
|
824
|
+
"license": "MIT",
|
|
825
|
+
"dependencies": {
|
|
826
|
+
"es-errors": "^1.3.0",
|
|
827
|
+
"function-bind": "^1.1.2"
|
|
828
|
+
},
|
|
829
|
+
"engines": {
|
|
830
|
+
"node": ">= 0.4"
|
|
831
|
+
}
|
|
832
|
+
},
|
|
764
833
|
"node_modules/caniuse-lite": {
|
|
765
834
|
"version": "1.0.30001790",
|
|
766
835
|
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001790.tgz",
|
|
@@ -837,6 +906,18 @@
|
|
|
837
906
|
"integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==",
|
|
838
907
|
"license": "MIT"
|
|
839
908
|
},
|
|
909
|
+
"node_modules/combined-stream": {
|
|
910
|
+
"version": "1.0.8",
|
|
911
|
+
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
|
|
912
|
+
"integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
|
|
913
|
+
"license": "MIT",
|
|
914
|
+
"dependencies": {
|
|
915
|
+
"delayed-stream": "~1.0.0"
|
|
916
|
+
},
|
|
917
|
+
"engines": {
|
|
918
|
+
"node": ">= 0.8"
|
|
919
|
+
}
|
|
920
|
+
},
|
|
840
921
|
"node_modules/comma-separated-tokens": {
|
|
841
922
|
"version": "2.0.3",
|
|
842
923
|
"resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz",
|
|
@@ -884,6 +965,15 @@
|
|
|
884
965
|
"url": "https://github.com/sponsors/wooorm"
|
|
885
966
|
}
|
|
886
967
|
},
|
|
968
|
+
"node_modules/delayed-stream": {
|
|
969
|
+
"version": "1.0.0",
|
|
970
|
+
"resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
|
|
971
|
+
"integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
|
|
972
|
+
"license": "MIT",
|
|
973
|
+
"engines": {
|
|
974
|
+
"node": ">=0.4.0"
|
|
975
|
+
}
|
|
976
|
+
},
|
|
887
977
|
"node_modules/dequal": {
|
|
888
978
|
"version": "2.0.3",
|
|
889
979
|
"resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
|
|
@@ -916,6 +1006,65 @@
|
|
|
916
1006
|
"url": "https://github.com/sponsors/wooorm"
|
|
917
1007
|
}
|
|
918
1008
|
},
|
|
1009
|
+
"node_modules/dunder-proto": {
|
|
1010
|
+
"version": "1.0.1",
|
|
1011
|
+
"resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
|
|
1012
|
+
"integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
|
|
1013
|
+
"license": "MIT",
|
|
1014
|
+
"dependencies": {
|
|
1015
|
+
"call-bind-apply-helpers": "^1.0.1",
|
|
1016
|
+
"es-errors": "^1.3.0",
|
|
1017
|
+
"gopd": "^1.2.0"
|
|
1018
|
+
},
|
|
1019
|
+
"engines": {
|
|
1020
|
+
"node": ">= 0.4"
|
|
1021
|
+
}
|
|
1022
|
+
},
|
|
1023
|
+
"node_modules/es-define-property": {
|
|
1024
|
+
"version": "1.0.1",
|
|
1025
|
+
"resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
|
|
1026
|
+
"integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
|
|
1027
|
+
"license": "MIT",
|
|
1028
|
+
"engines": {
|
|
1029
|
+
"node": ">= 0.4"
|
|
1030
|
+
}
|
|
1031
|
+
},
|
|
1032
|
+
"node_modules/es-errors": {
|
|
1033
|
+
"version": "1.3.0",
|
|
1034
|
+
"resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
|
|
1035
|
+
"integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
|
|
1036
|
+
"license": "MIT",
|
|
1037
|
+
"engines": {
|
|
1038
|
+
"node": ">= 0.4"
|
|
1039
|
+
}
|
|
1040
|
+
},
|
|
1041
|
+
"node_modules/es-object-atoms": {
|
|
1042
|
+
"version": "1.1.2",
|
|
1043
|
+
"resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.2.tgz",
|
|
1044
|
+
"integrity": "sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw==",
|
|
1045
|
+
"license": "MIT",
|
|
1046
|
+
"dependencies": {
|
|
1047
|
+
"es-errors": "^1.3.0"
|
|
1048
|
+
},
|
|
1049
|
+
"engines": {
|
|
1050
|
+
"node": ">= 0.4"
|
|
1051
|
+
}
|
|
1052
|
+
},
|
|
1053
|
+
"node_modules/es-set-tostringtag": {
|
|
1054
|
+
"version": "2.1.0",
|
|
1055
|
+
"resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
|
|
1056
|
+
"integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
|
|
1057
|
+
"license": "MIT",
|
|
1058
|
+
"dependencies": {
|
|
1059
|
+
"es-errors": "^1.3.0",
|
|
1060
|
+
"get-intrinsic": "^1.2.6",
|
|
1061
|
+
"has-tostringtag": "^1.0.2",
|
|
1062
|
+
"hasown": "^2.0.2"
|
|
1063
|
+
},
|
|
1064
|
+
"engines": {
|
|
1065
|
+
"node": ">= 0.4"
|
|
1066
|
+
}
|
|
1067
|
+
},
|
|
919
1068
|
"node_modules/escape-string-regexp": {
|
|
920
1069
|
"version": "5.0.0",
|
|
921
1070
|
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz",
|
|
@@ -944,6 +1093,139 @@
|
|
|
944
1093
|
"integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
|
|
945
1094
|
"license": "MIT"
|
|
946
1095
|
},
|
|
1096
|
+
"node_modules/follow-redirects": {
|
|
1097
|
+
"version": "1.16.0",
|
|
1098
|
+
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.16.0.tgz",
|
|
1099
|
+
"integrity": "sha512-y5rN/uOsadFT/JfYwhxRS5R7Qce+g3zG97+JrtFZlC9klX/W5hD7iiLzScI4nZqUS7DNUdhPgw4xI8W2LuXlUw==",
|
|
1100
|
+
"funding": [
|
|
1101
|
+
{
|
|
1102
|
+
"type": "individual",
|
|
1103
|
+
"url": "https://github.com/sponsors/RubenVerborgh"
|
|
1104
|
+
}
|
|
1105
|
+
],
|
|
1106
|
+
"license": "MIT",
|
|
1107
|
+
"engines": {
|
|
1108
|
+
"node": ">=4.0"
|
|
1109
|
+
},
|
|
1110
|
+
"peerDependenciesMeta": {
|
|
1111
|
+
"debug": {
|
|
1112
|
+
"optional": true
|
|
1113
|
+
}
|
|
1114
|
+
}
|
|
1115
|
+
},
|
|
1116
|
+
"node_modules/form-data": {
|
|
1117
|
+
"version": "4.0.5",
|
|
1118
|
+
"resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz",
|
|
1119
|
+
"integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==",
|
|
1120
|
+
"license": "MIT",
|
|
1121
|
+
"dependencies": {
|
|
1122
|
+
"asynckit": "^0.4.0",
|
|
1123
|
+
"combined-stream": "^1.0.8",
|
|
1124
|
+
"es-set-tostringtag": "^2.1.0",
|
|
1125
|
+
"hasown": "^2.0.2",
|
|
1126
|
+
"mime-types": "^2.1.12"
|
|
1127
|
+
},
|
|
1128
|
+
"engines": {
|
|
1129
|
+
"node": ">= 6"
|
|
1130
|
+
}
|
|
1131
|
+
},
|
|
1132
|
+
"node_modules/function-bind": {
|
|
1133
|
+
"version": "1.1.2",
|
|
1134
|
+
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
|
|
1135
|
+
"integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
|
|
1136
|
+
"license": "MIT",
|
|
1137
|
+
"funding": {
|
|
1138
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1139
|
+
}
|
|
1140
|
+
},
|
|
1141
|
+
"node_modules/get-intrinsic": {
|
|
1142
|
+
"version": "1.3.0",
|
|
1143
|
+
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
|
|
1144
|
+
"integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
|
|
1145
|
+
"license": "MIT",
|
|
1146
|
+
"dependencies": {
|
|
1147
|
+
"call-bind-apply-helpers": "^1.0.2",
|
|
1148
|
+
"es-define-property": "^1.0.1",
|
|
1149
|
+
"es-errors": "^1.3.0",
|
|
1150
|
+
"es-object-atoms": "^1.1.1",
|
|
1151
|
+
"function-bind": "^1.1.2",
|
|
1152
|
+
"get-proto": "^1.0.1",
|
|
1153
|
+
"gopd": "^1.2.0",
|
|
1154
|
+
"has-symbols": "^1.1.0",
|
|
1155
|
+
"hasown": "^2.0.2",
|
|
1156
|
+
"math-intrinsics": "^1.1.0"
|
|
1157
|
+
},
|
|
1158
|
+
"engines": {
|
|
1159
|
+
"node": ">= 0.4"
|
|
1160
|
+
},
|
|
1161
|
+
"funding": {
|
|
1162
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1163
|
+
}
|
|
1164
|
+
},
|
|
1165
|
+
"node_modules/get-proto": {
|
|
1166
|
+
"version": "1.0.1",
|
|
1167
|
+
"resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
|
|
1168
|
+
"integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
|
|
1169
|
+
"license": "MIT",
|
|
1170
|
+
"dependencies": {
|
|
1171
|
+
"dunder-proto": "^1.0.1",
|
|
1172
|
+
"es-object-atoms": "^1.0.0"
|
|
1173
|
+
},
|
|
1174
|
+
"engines": {
|
|
1175
|
+
"node": ">= 0.4"
|
|
1176
|
+
}
|
|
1177
|
+
},
|
|
1178
|
+
"node_modules/gopd": {
|
|
1179
|
+
"version": "1.2.0",
|
|
1180
|
+
"resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
|
|
1181
|
+
"integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
|
|
1182
|
+
"license": "MIT",
|
|
1183
|
+
"engines": {
|
|
1184
|
+
"node": ">= 0.4"
|
|
1185
|
+
},
|
|
1186
|
+
"funding": {
|
|
1187
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1188
|
+
}
|
|
1189
|
+
},
|
|
1190
|
+
"node_modules/has-symbols": {
|
|
1191
|
+
"version": "1.1.0",
|
|
1192
|
+
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
|
|
1193
|
+
"integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
|
|
1194
|
+
"license": "MIT",
|
|
1195
|
+
"engines": {
|
|
1196
|
+
"node": ">= 0.4"
|
|
1197
|
+
},
|
|
1198
|
+
"funding": {
|
|
1199
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1200
|
+
}
|
|
1201
|
+
},
|
|
1202
|
+
"node_modules/has-tostringtag": {
|
|
1203
|
+
"version": "1.0.2",
|
|
1204
|
+
"resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
|
|
1205
|
+
"integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
|
|
1206
|
+
"license": "MIT",
|
|
1207
|
+
"dependencies": {
|
|
1208
|
+
"has-symbols": "^1.0.3"
|
|
1209
|
+
},
|
|
1210
|
+
"engines": {
|
|
1211
|
+
"node": ">= 0.4"
|
|
1212
|
+
},
|
|
1213
|
+
"funding": {
|
|
1214
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1215
|
+
}
|
|
1216
|
+
},
|
|
1217
|
+
"node_modules/hasown": {
|
|
1218
|
+
"version": "2.0.4",
|
|
1219
|
+
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.4.tgz",
|
|
1220
|
+
"integrity": "sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==",
|
|
1221
|
+
"license": "MIT",
|
|
1222
|
+
"dependencies": {
|
|
1223
|
+
"function-bind": "^1.1.2"
|
|
1224
|
+
},
|
|
1225
|
+
"engines": {
|
|
1226
|
+
"node": ">= 0.4"
|
|
1227
|
+
}
|
|
1228
|
+
},
|
|
947
1229
|
"node_modules/hast-util-to-jsx-runtime": {
|
|
948
1230
|
"version": "2.3.6",
|
|
949
1231
|
"resolved": "https://registry.npmjs.org/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.6.tgz",
|
|
@@ -994,6 +1276,19 @@
|
|
|
994
1276
|
"url": "https://opencollective.com/unified"
|
|
995
1277
|
}
|
|
996
1278
|
},
|
|
1279
|
+
"node_modules/https-proxy-agent": {
|
|
1280
|
+
"version": "5.0.1",
|
|
1281
|
+
"resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
|
|
1282
|
+
"integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
|
|
1283
|
+
"license": "MIT",
|
|
1284
|
+
"dependencies": {
|
|
1285
|
+
"agent-base": "6",
|
|
1286
|
+
"debug": "4"
|
|
1287
|
+
},
|
|
1288
|
+
"engines": {
|
|
1289
|
+
"node": ">= 6"
|
|
1290
|
+
}
|
|
1291
|
+
},
|
|
997
1292
|
"node_modules/inline-style-parser": {
|
|
998
1293
|
"version": "0.2.7",
|
|
999
1294
|
"resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.7.tgz",
|
|
@@ -1056,6 +1351,12 @@
|
|
|
1056
1351
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
1057
1352
|
}
|
|
1058
1353
|
},
|
|
1354
|
+
"node_modules/json-schema": {
|
|
1355
|
+
"version": "0.4.0",
|
|
1356
|
+
"resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz",
|
|
1357
|
+
"integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==",
|
|
1358
|
+
"license": "(AFL-2.1 OR BSD-3-Clause)"
|
|
1359
|
+
},
|
|
1059
1360
|
"node_modules/longest-streak": {
|
|
1060
1361
|
"version": "3.1.0",
|
|
1061
1362
|
"resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz",
|
|
@@ -1085,6 +1386,15 @@
|
|
|
1085
1386
|
"url": "https://github.com/sponsors/wooorm"
|
|
1086
1387
|
}
|
|
1087
1388
|
},
|
|
1389
|
+
"node_modules/math-intrinsics": {
|
|
1390
|
+
"version": "1.1.0",
|
|
1391
|
+
"resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
|
|
1392
|
+
"integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
|
|
1393
|
+
"license": "MIT",
|
|
1394
|
+
"engines": {
|
|
1395
|
+
"node": ">= 0.4"
|
|
1396
|
+
}
|
|
1397
|
+
},
|
|
1088
1398
|
"node_modules/mdast-util-find-and-replace": {
|
|
1089
1399
|
"version": "3.0.2",
|
|
1090
1400
|
"resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.2.tgz",
|
|
@@ -1918,6 +2228,27 @@
|
|
|
1918
2228
|
],
|
|
1919
2229
|
"license": "MIT"
|
|
1920
2230
|
},
|
|
2231
|
+
"node_modules/mime-db": {
|
|
2232
|
+
"version": "1.52.0",
|
|
2233
|
+
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
|
|
2234
|
+
"integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
|
|
2235
|
+
"license": "MIT",
|
|
2236
|
+
"engines": {
|
|
2237
|
+
"node": ">= 0.6"
|
|
2238
|
+
}
|
|
2239
|
+
},
|
|
2240
|
+
"node_modules/mime-types": {
|
|
2241
|
+
"version": "2.1.35",
|
|
2242
|
+
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
|
|
2243
|
+
"integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
|
|
2244
|
+
"license": "MIT",
|
|
2245
|
+
"dependencies": {
|
|
2246
|
+
"mime-db": "1.52.0"
|
|
2247
|
+
},
|
|
2248
|
+
"engines": {
|
|
2249
|
+
"node": ">= 0.6"
|
|
2250
|
+
}
|
|
2251
|
+
},
|
|
1921
2252
|
"node_modules/ms": {
|
|
1922
2253
|
"version": "2.1.3",
|
|
1923
2254
|
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
|
@@ -2026,6 +2357,18 @@
|
|
|
2026
2357
|
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
|
|
2027
2358
|
"license": "ISC"
|
|
2028
2359
|
},
|
|
2360
|
+
"node_modules/playwright-core": {
|
|
2361
|
+
"version": "1.60.0",
|
|
2362
|
+
"resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.60.0.tgz",
|
|
2363
|
+
"integrity": "sha512-9bW6zvX/m0lEbgTKJ6YppOKx8H3VOPBMOCFh2irXFOT4BbHgrx5hPjwJYLT40Lu+4qtD36qKc/Hn56StUW57IA==",
|
|
2364
|
+
"license": "Apache-2.0",
|
|
2365
|
+
"bin": {
|
|
2366
|
+
"playwright-core": "cli.js"
|
|
2367
|
+
},
|
|
2368
|
+
"engines": {
|
|
2369
|
+
"node": ">=18"
|
|
2370
|
+
}
|
|
2371
|
+
},
|
|
2029
2372
|
"node_modules/postcss": {
|
|
2030
2373
|
"version": "8.5.10",
|
|
2031
2374
|
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.10.tgz",
|
|
@@ -2064,6 +2407,15 @@
|
|
|
2064
2407
|
"url": "https://github.com/sponsors/wooorm"
|
|
2065
2408
|
}
|
|
2066
2409
|
},
|
|
2410
|
+
"node_modules/proxy-from-env": {
|
|
2411
|
+
"version": "2.1.0",
|
|
2412
|
+
"resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-2.1.0.tgz",
|
|
2413
|
+
"integrity": "sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA==",
|
|
2414
|
+
"license": "MIT",
|
|
2415
|
+
"engines": {
|
|
2416
|
+
"node": ">=10"
|
|
2417
|
+
}
|
|
2418
|
+
},
|
|
2067
2419
|
"node_modules/react": {
|
|
2068
2420
|
"version": "19.2.4",
|
|
2069
2421
|
"resolved": "https://registry.npmjs.org/react/-/react-19.2.4.tgz",
|
|
@@ -2342,6 +2694,18 @@
|
|
|
2342
2694
|
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
|
|
2343
2695
|
"license": "0BSD"
|
|
2344
2696
|
},
|
|
2697
|
+
"node_modules/type-fest": {
|
|
2698
|
+
"version": "4.41.0",
|
|
2699
|
+
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.41.0.tgz",
|
|
2700
|
+
"integrity": "sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==",
|
|
2701
|
+
"license": "(MIT OR CC0-1.0)",
|
|
2702
|
+
"engines": {
|
|
2703
|
+
"node": ">=16"
|
|
2704
|
+
},
|
|
2705
|
+
"funding": {
|
|
2706
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
2707
|
+
}
|
|
2708
|
+
},
|
|
2345
2709
|
"node_modules/unified": {
|
|
2346
2710
|
"version": "11.0.5",
|
|
2347
2711
|
"resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@growthub/cli",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.2",
|
|
4
4
|
"description": "CLI control plane for Growthub Local and Agent Workspace as Code: export, fork, inspect, operate, sync, and optionally activate governed AI workspaces.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|