@uipath/flow-tool 0.1.5 → 0.1.10
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/README.md +380 -380
- package/dist/index.js +6 -94335
- package/dist/tool.js +37289 -72475
- package/package.json +59 -58
- package/dist/index.css +0 -1257
- package/dist/tool.css +0 -1257
package/package.json
CHANGED
|
@@ -1,60 +1,61 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
"
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
2
|
+
"name": "@uipath/flow-tool",
|
|
3
|
+
"version": "0.1.10",
|
|
4
|
+
"description": "Create, debug, and run UiPath Flow projects and jobs.",
|
|
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 --external @uipath/common --external @uipath/auth --external @uipath/filesystem --external @uipath/solutionpackager-tool-core && bun build ./src/index.ts --outdir dist --format esm --target node --external '*/tool.js' --external commander --external @uipath/common --external @uipath/auth --external @uipath/filesystem --external @uipath/solutionpackager-tool-core",
|
|
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
|
+
"peerDependencies": {
|
|
43
|
+
"commander": "^14.0.3",
|
|
44
|
+
"@uipath/common": "^0.1.7",
|
|
45
|
+
"@uipath/auth": "^0.1.6",
|
|
46
|
+
"@uipath/filesystem": "^0.1.6",
|
|
47
|
+
"@uipath/solutionpackager-tool-core": "^0.0.29"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@uipath/tool-flow": "0.0.12",
|
|
51
|
+
"@uipath/flow-core": "^0.1.3",
|
|
52
|
+
"@uipath/flow-converter": "^0.1.0",
|
|
53
|
+
"@uipath/flow-schema": "^0.2.0",
|
|
54
|
+
"@uipath/integrationservice-sdk": "workspace:*",
|
|
55
|
+
"@uipath/maestro-sdk": "workspace:*",
|
|
56
|
+
"@uipath/orchestrator-sdk": "workspace:*",
|
|
57
|
+
"bpmn-moddle": "^9.0.4",
|
|
58
|
+
"@types/node": "^25.2.3",
|
|
59
|
+
"typescript": "^5"
|
|
60
|
+
}
|
|
60
61
|
}
|