@commandgarden/cli 1.2.2 → 1.3.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/dist/main.js +8907 -8895
- package/node_modules/@commandgarden/app/dist/client/assets/index-B-_w54e9.css +1 -0
- package/node_modules/@commandgarden/app/dist/client/assets/index-Bb1BOK1E.js +252 -0
- package/node_modules/@commandgarden/app/dist/client/index.html +19 -19
- package/node_modules/@commandgarden/app/dist/server/daemon-client.test.js +47 -0
- package/node_modules/@commandgarden/app/dist/server/main.d.ts +1 -0
- package/node_modules/@commandgarden/app/dist/server/main.js +3 -3
- package/node_modules/@commandgarden/app/dist/server/routes/audit.d.ts +3 -0
- package/node_modules/@commandgarden/app/dist/server/routes/config.d.ts +3 -0
- package/node_modules/@commandgarden/app/dist/server/routes/connectors.d.ts +3 -0
- package/node_modules/@commandgarden/app/dist/server/routes/goals.d.ts +3 -0
- package/node_modules/@commandgarden/app/dist/server/routes/goals.js +31 -0
- package/node_modules/@commandgarden/app/dist/server/routes/index.d.ts +4 -0
- package/node_modules/@commandgarden/app/dist/server/routes/index.js +4 -0
- package/node_modules/@commandgarden/app/dist/server/routes/preferences.d.ts +3 -0
- package/node_modules/@commandgarden/app/dist/server/routes/routes.test.js +137 -0
- package/node_modules/@commandgarden/app/dist/server/routes/run.d.ts +3 -0
- package/node_modules/@commandgarden/app/dist/server/routes/status.d.ts +3 -0
- package/node_modules/@commandgarden/app/dist/server/routes/timetracking-cache.d.ts +3 -0
- package/node_modules/@commandgarden/app/dist/server/routes/timetracking-cache.js +35 -0
- package/node_modules/@commandgarden/app/dist/server/store.d.ts +47 -0
- package/node_modules/@commandgarden/app/dist/server/store.js +112 -10
- package/node_modules/@commandgarden/app/dist/server/store.test.js +59 -0
- package/node_modules/@commandgarden/app/package.json +42 -41
- package/node_modules/@commandgarden/daemon/connectors/lib/msal-token.js +20 -0
- package/node_modules/@commandgarden/daemon/connectors/teams-room-availability.eval.js +341 -0
- package/node_modules/@commandgarden/daemon/connectors/teams-room-availability.yaml +46 -0
- package/node_modules/@commandgarden/daemon/connectors/timetracking-projects.eval.js +52 -0
- package/node_modules/@commandgarden/daemon/connectors/timetracking-projects.yaml +42 -0
- package/node_modules/@commandgarden/daemon/connectors/timetracking-report.eval.js +81 -0
- package/node_modules/@commandgarden/daemon/connectors/timetracking-report.yaml +52 -0
- package/node_modules/@commandgarden/daemon/dist/audit-store.js +8 -8
- package/node_modules/@commandgarden/daemon/dist/cdp-client.d.ts +24 -0
- package/node_modules/@commandgarden/daemon/dist/cdp-client.d.ts.map +1 -0
- package/node_modules/@commandgarden/daemon/dist/cdp-client.js +150 -0
- package/node_modules/@commandgarden/daemon/dist/cdp-client.js.map +1 -0
- package/node_modules/@commandgarden/daemon/dist/config.d.ts.map +1 -1
- package/node_modules/@commandgarden/daemon/dist/config.js +5 -3
- package/node_modules/@commandgarden/daemon/dist/config.js.map +1 -1
- package/node_modules/@commandgarden/daemon/package.json +30 -29
- package/node_modules/@commandgarden/shared/dist/daemon-client.d.ts +19 -0
- package/node_modules/@commandgarden/shared/dist/daemon-client.d.ts.map +1 -0
- package/node_modules/@commandgarden/shared/dist/daemon-client.js +129 -0
- package/node_modules/@commandgarden/shared/dist/daemon-client.js.map +1 -0
- package/node_modules/@commandgarden/shared/dist/index.d.ts +1 -0
- package/node_modules/@commandgarden/shared/dist/index.d.ts.map +1 -1
- package/node_modules/@commandgarden/shared/dist/index.js +2 -0
- package/node_modules/@commandgarden/shared/dist/index.js.map +1 -1
- package/node_modules/@commandgarden/shared/package.json +32 -32
- package/package.json +55 -55
- package/node_modules/@commandgarden/app/dist/client/assets/index-58UrF1aG.js +0 -197
- package/node_modules/@commandgarden/app/dist/client/assets/index-DErcb2Kp.css +0 -1
package/package.json
CHANGED
|
@@ -1,55 +1,55 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@commandgarden/cli",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "Enterprise browser automation CLI",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"license": "MIT",
|
|
7
|
-
"main": "./dist/main.js",
|
|
8
|
-
"bin": {
|
|
9
|
-
"commandgarden": "dist/main.js",
|
|
10
|
-
"cg": "dist/main.js"
|
|
11
|
-
},
|
|
12
|
-
"files": [
|
|
13
|
-
"dist"
|
|
14
|
-
],
|
|
15
|
-
"engines": {
|
|
16
|
-
"node": ">=20"
|
|
17
|
-
},
|
|
18
|
-
"keywords": [
|
|
19
|
-
"browser-automation",
|
|
20
|
-
"cli",
|
|
21
|
-
"enterprise",
|
|
22
|
-
"commandgarden"
|
|
23
|
-
],
|
|
24
|
-
"scripts": {
|
|
25
|
-
"build": "tsup",
|
|
26
|
-
"prepack": "node scripts/prepare-bundle.mjs",
|
|
27
|
-
"start": "node dist/main.js",
|
|
28
|
-
"test": "vitest run",
|
|
29
|
-
"test:watch": "vitest"
|
|
30
|
-
},
|
|
31
|
-
"bundleDependencies": [
|
|
32
|
-
"@commandgarden/daemon",
|
|
33
|
-
"@commandgarden/app",
|
|
34
|
-
"@commandgarden/shared"
|
|
35
|
-
],
|
|
36
|
-
"dependencies": {
|
|
37
|
-
"@commandgarden/app": "*",
|
|
38
|
-
"@commandgarden/daemon": "*",
|
|
39
|
-
"@commandgarden/shared": "*",
|
|
40
|
-
"@fastify/static": "^8.0.0",
|
|
41
|
-
"@fastify/websocket": "^11.0.0",
|
|
42
|
-
"sql.js": "^1.11.0",
|
|
43
|
-
"cli-table3": "^0.6.0",
|
|
44
|
-
"commander": "^12.0.0",
|
|
45
|
-
"fastify": "^5.0.0",
|
|
46
|
-
"yaml": "^2.4.0",
|
|
47
|
-
"zod": "^3.23.0"
|
|
48
|
-
},
|
|
49
|
-
"devDependencies": {
|
|
50
|
-
"@types/node": "^22.0.0",
|
|
51
|
-
"tsup": "^8.5.1",
|
|
52
|
-
"typescript": "^5.4.0",
|
|
53
|
-
"vitest": "^2.0.0"
|
|
54
|
-
}
|
|
55
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@commandgarden/cli",
|
|
3
|
+
"version": "1.3.0",
|
|
4
|
+
"description": "Enterprise browser automation CLI",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"main": "./dist/main.js",
|
|
8
|
+
"bin": {
|
|
9
|
+
"commandgarden": "dist/main.js",
|
|
10
|
+
"cg": "dist/main.js"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"dist"
|
|
14
|
+
],
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=20"
|
|
17
|
+
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"browser-automation",
|
|
20
|
+
"cli",
|
|
21
|
+
"enterprise",
|
|
22
|
+
"commandgarden"
|
|
23
|
+
],
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build": "tsup",
|
|
26
|
+
"prepack": "node scripts/prepare-bundle.mjs",
|
|
27
|
+
"start": "node dist/main.js",
|
|
28
|
+
"test": "vitest run",
|
|
29
|
+
"test:watch": "vitest"
|
|
30
|
+
},
|
|
31
|
+
"bundleDependencies": [
|
|
32
|
+
"@commandgarden/daemon",
|
|
33
|
+
"@commandgarden/app",
|
|
34
|
+
"@commandgarden/shared"
|
|
35
|
+
],
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"@commandgarden/app": "*",
|
|
38
|
+
"@commandgarden/daemon": "*",
|
|
39
|
+
"@commandgarden/shared": "*",
|
|
40
|
+
"@fastify/static": "^8.0.0",
|
|
41
|
+
"@fastify/websocket": "^11.0.0",
|
|
42
|
+
"sql.js": "^1.11.0",
|
|
43
|
+
"cli-table3": "^0.6.0",
|
|
44
|
+
"commander": "^12.0.0",
|
|
45
|
+
"fastify": "^5.0.0",
|
|
46
|
+
"yaml": "^2.4.0",
|
|
47
|
+
"zod": "^3.23.0"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@types/node": "^22.0.0",
|
|
51
|
+
"tsup": "^8.5.1",
|
|
52
|
+
"typescript": "^5.4.0",
|
|
53
|
+
"vitest": "^2.0.0"
|
|
54
|
+
}
|
|
55
|
+
}
|