@uipath/codedapp-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.
Files changed (3) hide show
  1. package/dist/index.js +90848 -0
  2. package/dist/tool.js +90839 -0
  3. package/package.json +49 -0
package/package.json ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "@uipath/codedapp-tool",
3
+ "version": "0.1.5",
4
+ "description": "uipcli plugin for coded web applications",
5
+ "keywords": ["uipcli-tool"],
6
+ "type": "module",
7
+ "main": "./dist/tool.js",
8
+ "exports": {
9
+ ".": "./dist/tool.js"
10
+ },
11
+ "bin": {
12
+ "codedapp-tool": "./dist/index.js"
13
+ },
14
+ "files": ["dist"],
15
+ "scripts": {
16
+ "build": "bun build ./src/tool.ts --outdir dist --format esm --target node --external commander --external signal-exit --external @uipath/auth && bun build ./src/index.ts --outdir dist --format esm --target node --external commander --external signal-exit --external @uipath/auth",
17
+ "build:full": "cd ../cli && npm run build && cd ../codedapp-tool && npm run build",
18
+ "prepublishOnly": "npm run clean && npm run build:full",
19
+ "dev": "bash scripts/dev.sh",
20
+ "dev:link": "bash scripts/link-to-uipcli.sh",
21
+ "clean": "rimraf dist",
22
+ "test": "vitest run",
23
+ "test:watch": "vitest",
24
+ "test:coverage": "vitest run --coverage"
25
+ },
26
+ "dependencies": {
27
+ "commander": "^14.0.3",
28
+ "signal-exit": "^4.1.0"
29
+ },
30
+ "devDependencies": {
31
+ "@uipath/uipath-ts-cli": "*",
32
+ "@types/node": "^20.11.19",
33
+ "rimraf": "^6.0.1",
34
+ "typescript": "^5.3.3",
35
+ "@vitest/coverage-v8": "^3.2.4",
36
+ "vitest": "^3.2.4"
37
+ },
38
+ "repository": {
39
+ "type": "git",
40
+ "url": "git+https://github.com/UiPath/uipath-typescript.git",
41
+ "directory": "packages/codedapp-tool"
42
+ },
43
+ "publishConfig": {
44
+ "registry": "https://registry.npmjs.org"
45
+ },
46
+ "engines": {
47
+ "node": ">=18.0.0"
48
+ }
49
+ }