@flowdot.ai/cli 1.1.2 → 1.1.4

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/package.json CHANGED
@@ -1,96 +1,95 @@
1
- {
2
- "name": "@flowdot.ai/cli",
3
- "version": "1.1.2",
4
- "description": "Official CLI for FlowDot - Execute workflows, send messages to the agent, and manage your account from the command line",
5
- "type": "module",
6
- "bin": {
7
- "flowdot": "./dist/cli/index.js"
8
- },
9
- "workspaces": [
10
- "packages/*"
11
- ],
12
- "scripts": {
13
- "clean": "rimraf dist coverage",
14
- "build": "node esbuild.config.js",
15
- "build:extension": "npm run build --workspace=flowdot-vscode && npm run package:all --workspace=flowdot-vscode",
16
- "build:all": "npm run build && npm run build:extension",
17
- "dev": "node esbuild.config.js --watch",
18
- "lint": "cross-env NODE_OPTIONS=--max-old-space-size=8192 eslint .",
19
- "lint:fix": "cross-env NODE_OPTIONS=--max-old-space-size=8192 eslint . --fix",
20
- "type-check": "tsc --noEmit",
21
- "test": "vitest run",
22
- "test:watch": "vitest",
23
- "verify-pack": "node scripts/verify-pack.mjs",
24
- "publish:safe": "node scripts/publish.mjs",
25
- "prepublishOnly": "npm run clean && npm run lint && npm test && npm run build && npm run verify-pack",
26
- "prepare": "husky || true",
27
- "postinstall": "patch-package"
28
- },
29
- "files": [
30
- "dist",
31
- "packages/core/assets",
32
- "LICENSE",
33
- "README.md"
34
- ],
35
- "publishConfig": {
36
- "access": "public"
37
- },
38
- "repository": {
39
- "type": "git",
40
- "url": "https://github.com/ElliotTheGreek/flowdot-cli.git"
41
- },
42
- "homepage": "https://flowdot.ai/docs/cli",
43
- "author": "FlowDot",
44
- "license": "SEE LICENSE IN LICENSE",
45
- "engines": {
46
- "node": ">=20.0.0"
47
- },
48
- "devDependencies": {
49
- "@eslint/js": "^9.24.0",
50
- "@types/js-yaml": "^4.0.9",
51
- "@types/node": "^20.11.20",
52
- "@types/react": "^19.2.0",
53
- "@types/react-dom": "^19.2.0",
54
- "@types/uuid": "^10.0.0",
55
- "@vitest/eslint-plugin": "^1.3.4",
56
- "cross-env": "^7.0.3",
57
- "esbuild": "^0.25.0",
58
- "esbuild-node-externals": "^1.20.1",
59
- "eslint": "^9.24.0",
60
- "eslint-config-prettier": "^10.1.2",
61
- "eslint-plugin-import": "^2.31.0",
62
- "eslint-plugin-license-header": "^0.8.0",
63
- "eslint-plugin-react": "^7.37.5",
64
- "eslint-plugin-react-hooks": "^5.2.0",
65
- "globals": "^16.0.0",
66
- "husky": "^9.1.7",
67
- "ink-spinner": "^5.0.0",
68
- "ink-testing-library": "^4.0.0",
69
- "ink-text-input": "^6.0.0",
70
- "jest-environment-jsdom": "^30.2.0",
71
- "lint-staged": "^15.2.10",
72
- "patch-package": "^8.0.1",
73
- "prettier": "^3.2.5",
74
- "rimraf": "^6.0.1",
75
- "typescript": "^5.3.3",
76
- "typescript-eslint": "^8.30.1",
77
- "uuid": "^10.0.0",
78
- "vite-tsconfig-paths": "^5.1.4",
79
- "vitest": "^3.2.4"
80
- },
81
- "dependencies": {
82
- "@flowdot.ai/api": "file:../flowdot-api",
83
- "@livekit/rtc-node": "^0.13.28",
84
- "ink": "npm:@jrichman/ink@6.4.6",
85
- "keytar": "^7.9.0",
86
- "react": "^19.2.0"
87
- },
88
- "optionalDependencies": {
89
- "naudiodon2": "^2.4.0"
90
- },
91
- "lint-staged": {
92
- "*.{ts,tsx}": [
93
- "cross-env NODE_OPTIONS=--max-old-space-size=8192 eslint --fix"
94
- ]
95
- }
96
- }
1
+ {
2
+ "name": "@flowdot.ai/cli",
3
+ "version": "1.1.4",
4
+ "description": "Official CLI for FlowDot - Execute workflows, send messages to the agent, and manage your account from the command line",
5
+ "type": "module",
6
+ "bin": {
7
+ "flowdot": "./dist/cli/index.js"
8
+ },
9
+ "workspaces": [
10
+ "packages/*"
11
+ ],
12
+ "scripts": {
13
+ "clean": "rimraf dist coverage",
14
+ "build": "node esbuild.config.js",
15
+ "build:extension": "npm run build --workspace=flowdot-vscode && npm run package:all --workspace=flowdot-vscode",
16
+ "build:all": "npm run build && npm run build:extension",
17
+ "dev": "node esbuild.config.js --watch",
18
+ "lint": "cross-env NODE_OPTIONS=--max-old-space-size=8192 eslint .",
19
+ "lint:fix": "cross-env NODE_OPTIONS=--max-old-space-size=8192 eslint . --fix",
20
+ "type-check": "tsc --noEmit",
21
+ "test": "vitest run",
22
+ "test:watch": "vitest",
23
+ "verify-pack": "node scripts/verify-pack.mjs",
24
+ "publish:safe": "node scripts/publish.mjs",
25
+ "prepublishOnly": "npm run clean && npm run lint && npm test && npm run build && npm run verify-pack",
26
+ "prepare": "husky || true",
27
+ "postinstall": "patch-package"
28
+ },
29
+ "files": [
30
+ "dist",
31
+ "packages/core/assets",
32
+ "LICENSE",
33
+ "README.md"
34
+ ],
35
+ "publishConfig": {
36
+ "access": "public"
37
+ },
38
+ "repository": {
39
+ "type": "git",
40
+ "url": "https://github.com/ElliotTheGreek/flowdot-cli.git"
41
+ },
42
+ "homepage": "https://flowdot.ai/docs/cli",
43
+ "author": "FlowDot",
44
+ "license": "SEE LICENSE IN LICENSE",
45
+ "engines": {
46
+ "node": ">=20.0.0"
47
+ },
48
+ "devDependencies": {
49
+ "@eslint/js": "^9.24.0",
50
+ "@types/js-yaml": "^4.0.9",
51
+ "@types/node": "^20.11.20",
52
+ "@types/react": "^19.2.0",
53
+ "@types/react-dom": "^19.2.0",
54
+ "@types/uuid": "^10.0.0",
55
+ "@vitest/eslint-plugin": "^1.3.4",
56
+ "cross-env": "^7.0.3",
57
+ "esbuild": "^0.25.0",
58
+ "esbuild-node-externals": "^1.20.1",
59
+ "eslint": "^9.24.0",
60
+ "eslint-config-prettier": "^10.1.2",
61
+ "eslint-plugin-import": "^2.31.0",
62
+ "eslint-plugin-license-header": "^0.8.0",
63
+ "eslint-plugin-react": "^7.37.5",
64
+ "eslint-plugin-react-hooks": "^5.2.0",
65
+ "globals": "^16.0.0",
66
+ "husky": "^9.1.7",
67
+ "ink-spinner": "^5.0.0",
68
+ "ink-testing-library": "^4.0.0",
69
+ "ink-text-input": "^6.0.0",
70
+ "jest-environment-jsdom": "^30.2.0",
71
+ "lint-staged": "^15.2.10",
72
+ "patch-package": "^8.0.1",
73
+ "prettier": "^3.2.5",
74
+ "rimraf": "^6.0.1",
75
+ "typescript": "^5.3.3",
76
+ "typescript-eslint": "^8.30.1",
77
+ "uuid": "^10.0.0",
78
+ "vite-tsconfig-paths": "^5.1.4",
79
+ "vitest": "^3.2.4"
80
+ },
81
+ "dependencies": {
82
+ "@flowdot.ai/api": "^1.2.3",
83
+ "@livekit/rtc-node": "^0.13.28",
84
+ "ink": "^6.8.0",
85
+ "react": "^19.2.0"
86
+ },
87
+ "optionalDependencies": {
88
+ "naudiodon2": "^2.4.0"
89
+ },
90
+ "lint-staged": {
91
+ "*.{ts,tsx}": [
92
+ "cross-env NODE_OPTIONS=--max-old-space-size=8192 eslint --fix"
93
+ ]
94
+ }
95
+ }