@uipath/solution-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/README.md +30 -0
- package/dist/index.js +70706 -0
- package/dist/tool.js +86429 -0
- package/package.json +57 -0
package/package.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@uipath/solution-tool",
|
|
3
|
+
"version": "0.1.5",
|
|
4
|
+
"description": "uipcli plugin for managing UiPath Automation Solutions.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/UiPath/uipcli.git",
|
|
8
|
+
"directory": "packages/solution-tool"
|
|
9
|
+
},
|
|
10
|
+
"publishConfig": {
|
|
11
|
+
"registry": "https://registry.npmjs.org/"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"uipcli-tool"
|
|
15
|
+
],
|
|
16
|
+
"type": "module",
|
|
17
|
+
"main": "./dist/tool.js",
|
|
18
|
+
"exports": {
|
|
19
|
+
".": "./dist/tool.js"
|
|
20
|
+
},
|
|
21
|
+
"bin": {
|
|
22
|
+
"solution-tool": "./dist/index.js"
|
|
23
|
+
},
|
|
24
|
+
"files": [
|
|
25
|
+
"dist"
|
|
26
|
+
],
|
|
27
|
+
"private": false,
|
|
28
|
+
"maintainers": [
|
|
29
|
+
"aoltean16",
|
|
30
|
+
"mihaigirleanu",
|
|
31
|
+
"vlad-uipath"
|
|
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
|
+
"e2e": "vitest run --config ../../vitest.e2e.base.config.ts"
|
|
39
|
+
},
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"commander": "^14.0.3",
|
|
42
|
+
"fflate": "^0.8.2"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@uipath/auth": "0.1.5",
|
|
46
|
+
"@uipath/common": "0.1.5",
|
|
47
|
+
"@uipath/filesystem": "0.1.5",
|
|
48
|
+
"@uipath/resource-builder-sdk": "^2025.11.0-alpha2432-2950",
|
|
49
|
+
"@uipath/orchestrator-sdk": "0.1.5",
|
|
50
|
+
"@uipath/pipelines-sdk": "0.1.0",
|
|
51
|
+
"@uipath/solution-sdk": "0.1.5",
|
|
52
|
+
"@uipath/solutionpackager-sdk": "^1.0.10",
|
|
53
|
+
"@uipath/solutionpackager-tool-core": "^0.0.22",
|
|
54
|
+
"@types/node": "^25.2.3",
|
|
55
|
+
"typescript": "^5"
|
|
56
|
+
}
|
|
57
|
+
}
|