@uipath/solutionpackager-sdk 1.0.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 +308 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +57310 -0
- package/dist/index.js.LICENSE.txt +7 -0
- package/dist/index.js.map +1 -0
- package/dist/node.d.ts +10 -0
- package/dist/node.js +41773 -0
- package/dist/node.js.map +1 -0
- package/package.json +60 -0
package/package.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@uipath/solutionpackager-sdk",
|
|
3
|
+
"version": "1.0.10",
|
|
4
|
+
"description": "UiPath Solution Packager SDK - bundles core packager with all project tools",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/node.js",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"browser": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"default": "./dist/index.js"
|
|
12
|
+
},
|
|
13
|
+
"default": {
|
|
14
|
+
"types": "./dist/node.d.ts",
|
|
15
|
+
"default": "./dist/node.js"
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"types": "./dist/node.d.ts",
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "https://github.com/UiPath/Studio.Common.git",
|
|
23
|
+
"directory": "packager/uipath-solutionpackager-sdk"
|
|
24
|
+
},
|
|
25
|
+
"files": [
|
|
26
|
+
"dist"
|
|
27
|
+
],
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "rslib build",
|
|
30
|
+
"clean": "rimraf dist",
|
|
31
|
+
"test": "vitest run",
|
|
32
|
+
"prepack": "bun run build",
|
|
33
|
+
"publish:dry": "bun publish --dry-run",
|
|
34
|
+
"publish:gh": "bun publish",
|
|
35
|
+
"version:patch": "bun version patch --no-git-tag-version",
|
|
36
|
+
"version:minor": "bun version minor --no-git-tag-version",
|
|
37
|
+
"version:major": "bun version major --no-git-tag-version"
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"@uipath/solution-packager": "*",
|
|
41
|
+
"@uipath/solutionpackager-tool-core": "*",
|
|
42
|
+
"@uipath/tool-apiworkflow": "*",
|
|
43
|
+
"@uipath/tool-bpmn": "*",
|
|
44
|
+
"@uipath/tool-case": "*",
|
|
45
|
+
"@uipath/tool-connector": "*",
|
|
46
|
+
"@uipath/tool-flow": "*",
|
|
47
|
+
"@uipath/tool-workflowcompiler": "*",
|
|
48
|
+
"@uipath/tool-agent": "0.0.2",
|
|
49
|
+
"@uipath/tool-webapp": "0.0.8",
|
|
50
|
+
"@uipath/resource-builder-tool": "^2025.11.0-alpha2430-2948"
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@rslib/core": "^0.18.2",
|
|
54
|
+
"@types/node": "^24.10.1",
|
|
55
|
+
"@uipath/filesystem": "^0.0.5",
|
|
56
|
+
"typescript": "^5.9.3",
|
|
57
|
+
"vite-tsconfig-paths": "^5.1.4",
|
|
58
|
+
"vitest": "^4.0.14"
|
|
59
|
+
}
|
|
60
|
+
}
|