-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.48 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.48 KB
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
{
"name": "@uipath/codedapp-tool",
"version": "0.1.6",
"description": "uipcli plugin for coded web applications",
"keywords": ["uipcli-tool"],
"type": "module",
"main": "./dist/tool.js",
"exports": {
".": "./dist/tool.js"
},
"bin": {
"codedapp-tool": "./dist/index.js"
},
"files": ["dist"],
"scripts": {
"build": "bun build ./src/tool.ts --outdir dist --format esm --target node --external commander --external signal-exit && bun build ./src/index.ts --outdir dist --format esm --target node --external commander --external signal-exit",
"build:full": "cd ../cli && npm run build && cd ../codedapp-tool && npm run build",
"prepublishOnly": "npm run clean && npm run build:full",
"dev": "bash scripts/dev.sh",
"dev:link": "bash scripts/link-to-uipcli.sh",
"clean": "rimraf dist",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"commander": "^14.0.3",
"signal-exit": "^4.1.0"
},
"devDependencies": {
"@uipath/uipath-ts-cli": "*",
"@types/node": "^20.11.19",
"rimraf": "^6.0.1",
"typescript": "^5.3.3",
"@vitest/coverage-v8": "^3.2.4",
"vitest": "^3.2.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UiPath/uipath-typescript.git",
"directory": "packages/codedapp-tool"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"engines": {
"node": ">=18.0.0"
}
}