@iflyrpa/binary 1.0.1
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 +34180 -0
- package/dist/index.js.LICENSE.txt +15 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +34115 -0
- package/dist/index.mjs.LICENSE.txt +15 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +49 -0
package/package.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@iflyrpa/binary",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"keywords": [],
|
|
12
|
+
"author": "",
|
|
13
|
+
"license": "ISC",
|
|
14
|
+
"devDependencies": {
|
|
15
|
+
"@rslib/core": "^0.4.1",
|
|
16
|
+
"@sentry/cli": "^2.58.2",
|
|
17
|
+
"@types/node": "^22.8.1",
|
|
18
|
+
"@types/ws": "^8.18.1",
|
|
19
|
+
"@vercel/ncc": "^0.38.4",
|
|
20
|
+
"esbuild": "^0.25.9",
|
|
21
|
+
"nexe": "5.0.0-beta.4",
|
|
22
|
+
"pkg": "^5.8.1",
|
|
23
|
+
"v8-compile-cache": "^2.4.0",
|
|
24
|
+
"ws": "^8.18.3",
|
|
25
|
+
"@iflyrpa/actions": "1.2.25-beta.1",
|
|
26
|
+
"@iflyrpa/share": "0.0.15-beta.1"
|
|
27
|
+
},
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"@sentry/node": "^9.11.0",
|
|
30
|
+
"axios": "^1.7.8",
|
|
31
|
+
"commander": "^14.0.1",
|
|
32
|
+
"loglevel": "^1.9.2",
|
|
33
|
+
"playwright-core": "^1.46.1",
|
|
34
|
+
"steel-sdk": "0.11.0"
|
|
35
|
+
},
|
|
36
|
+
"patchedDependencies": {
|
|
37
|
+
"playwright-core@1.46.1": ".patches/playwright-core@1.46.1.patch"
|
|
38
|
+
},
|
|
39
|
+
"scripts": {
|
|
40
|
+
"start": "ts-node src/index.ts",
|
|
41
|
+
"dev": "rslib build --watch",
|
|
42
|
+
"build": "rslib build",
|
|
43
|
+
"clean": "rm -rf dist",
|
|
44
|
+
"ncc:build": "pnpm run clean && pnpm ncc build src/index.ts -o dist -s -t --no-source-map-register -e playwright-core",
|
|
45
|
+
"bun:dev": "bun run src/index.ts",
|
|
46
|
+
"bun:dpkg": "bun build ./src/index.ts --compile --bytecode --target=bun-linux-x64 --outfile dist/release/rpa-cli-linux-x64",
|
|
47
|
+
"nexe:dpkg": "pnpm build && nexe dist/index.js -t linux-x64-17.9.1 --build --verbose -o dist/release/rpa-cli-linux-x64"
|
|
48
|
+
}
|
|
49
|
+
}
|