@uipath/flow-tool 0.1.5

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 ADDED
@@ -0,0 +1,60 @@
1
+ {
2
+ "name": "@uipath/flow-tool",
3
+ "version": "0.1.5",
4
+ "description": "uipcli plugin for managing UiPath Flow projects",
5
+ "private": false,
6
+ "maintainers": [
7
+ "aoltean16",
8
+ "mihaigirleanu",
9
+ "vlad-uipath"
10
+ ],
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://github.com/UiPath/uipcli.git",
14
+ "directory": "packages/flow-tool"
15
+ },
16
+ "publishConfig": {
17
+ "registry": "https://registry.npmjs.org/"
18
+ },
19
+ "keywords": [
20
+ "uipcli-tool"
21
+ ],
22
+ "type": "module",
23
+ "main": "./dist/tool.js",
24
+ "exports": {
25
+ ".": "./dist/tool.js"
26
+ },
27
+ "bin": {
28
+ "flow-tool": "./dist/index.js"
29
+ },
30
+ "files": [
31
+ "dist"
32
+ ],
33
+ "scripts": {
34
+ "build": "bun build ./src/tool.ts --outdir dist --format esm --target node --external commander && bun build ./src/index.ts --outdir dist --format esm --target node",
35
+ "package": "bun run build && bun pm pack",
36
+ "lint": "biome check .",
37
+ "lint:fix": "biome check --write .",
38
+ "test": "vitest run && vitest run -c vitest.isolated.config.ts",
39
+ "test:isolated": "vitest run -c vitest.isolated.config.ts",
40
+ "test:coverage": "vitest run --coverage && vitest run --coverage -c vitest.isolated.config.ts && cat coverage-isolated/lcov.info >> coverage/lcov.info && rm -rf coverage-isolated"
41
+ },
42
+ "dependencies": {
43
+ "commander": "^14.0.3"
44
+ },
45
+ "devDependencies": {
46
+ "@uipath/auth": "0.1.5",
47
+ "@uipath/common": "0.1.5",
48
+ "@uipath/filesystem": "0.1.5",
49
+ "@uipath/flow-converter": "^0.1.0",
50
+ "@uipath/flow-schema": "^0.2.0",
51
+ "@uipath/flow-services": "^0.0.0-dev.0",
52
+ "@uipath/integrationservice-sdk": "0.1.5",
53
+ "@uipath/maestro-sdk": "0.1.5",
54
+ "@uipath/orchestrator-sdk": "0.1.5",
55
+ "@uipath/solutionpackager-tool-core": "^0.0.18",
56
+ "bpmn-moddle": "^9.0.4",
57
+ "@types/node": "^25.2.3",
58
+ "typescript": "^5"
59
+ }
60
+ }