@uipath/rpa-tool 0.1.2-cloud.22524
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/index.js +26539 -0
- package/dist/tool.js +26479 -0
- package/package.json +58 -0
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@uipath/rpa-tool",
|
|
3
|
+
"version": "0.1.2-cloud.22524",
|
|
4
|
+
"description": "Tool for creating and managing UiPath RPA projects via Studio IPC",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"uipcli-tool",
|
|
7
|
+
"rpa",
|
|
8
|
+
"studio"
|
|
9
|
+
],
|
|
10
|
+
"type": "module",
|
|
11
|
+
"main": "./dist/tool.js",
|
|
12
|
+
"exports": {
|
|
13
|
+
".": "./dist/tool.js"
|
|
14
|
+
},
|
|
15
|
+
"private": false,
|
|
16
|
+
"maintainers": [
|
|
17
|
+
"vlad-uipath",
|
|
18
|
+
"andrei.balint",
|
|
19
|
+
"andrei.singeorzan"
|
|
20
|
+
],
|
|
21
|
+
"bin": {
|
|
22
|
+
"rpa-tool": "dist/index.js"
|
|
23
|
+
},
|
|
24
|
+
"files": [
|
|
25
|
+
"dist"
|
|
26
|
+
],
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "git+https://github.com/UiPath/Studio.git",
|
|
30
|
+
"directory": "RpaTool/rpa-tool"
|
|
31
|
+
},
|
|
32
|
+
"publishConfig": {
|
|
33
|
+
"registry": "https://npm.pkg.github.com/@uipath"
|
|
34
|
+
},
|
|
35
|
+
"scripts": {
|
|
36
|
+
"build": "bunx tsc --noEmit && bun build ./src/tool.ts --outdir dist --format esm --target node --external commander --external applicationinsights && bun build ./src/index.ts --outdir dist --format esm --target node --external commander --external applicationinsights",
|
|
37
|
+
"package": "bun run build && bun pm pack",
|
|
38
|
+
"generate-docs": "bun run scripts/generate-docs.ts",
|
|
39
|
+
"test": "bun test",
|
|
40
|
+
"lint": "bunx @biomejs/biome check src",
|
|
41
|
+
"lint:fix": "bunx @biomejs/biome check --write src"
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"commander": "^14.0.3"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@uipath/common": "^0.1.5",
|
|
48
|
+
"@uipath/coreipc": "2.5.1-20260209-02",
|
|
49
|
+
"@uipath/project-packager": "^1.1.5",
|
|
50
|
+
"@uipath/solutionpackager-tool-core": "0.0.26",
|
|
51
|
+
"@uipath/tool-workflowcompiler": "0.0.11",
|
|
52
|
+
"@uipath/uipcli-common": "^0.0.4",
|
|
53
|
+
"chalk": "^5.6.2",
|
|
54
|
+
"@types/bun": "^1.1.14",
|
|
55
|
+
"@types/node": "^25.1.0",
|
|
56
|
+
"typescript": "^5.7.2"
|
|
57
|
+
}
|
|
58
|
+
}
|