@brightsec/cli 10.3.1 → 11.0.0-alpha.2
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 +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +16 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@brightsec/cli",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "11.0.0-alpha.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -26,20 +26,25 @@
|
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@neuralegion/capture-har": "^0.3.4",
|
|
29
|
-
"@neuralegion/os-service": "^1.
|
|
29
|
+
"@neuralegion/os-service": "^1.2.2",
|
|
30
|
+
"@neuralegion/raw-socket": "^1.8.2",
|
|
31
|
+
"@sentry/node": "^7.70.0",
|
|
30
32
|
"ajv": "^6.12.6",
|
|
31
33
|
"amqplib": "~0.10.2",
|
|
34
|
+
"arch": "^2.2.0",
|
|
32
35
|
"better-ajv-errors": "^1.2.0",
|
|
33
36
|
"chalk": "^4.1.2",
|
|
37
|
+
"ci-info": "^3.8.0",
|
|
34
38
|
"content-type": "^1.0.4",
|
|
35
39
|
"find-up": "^5.0.0",
|
|
36
40
|
"js-yaml": "^4.1.0",
|
|
37
41
|
"ms": "^2.1.3",
|
|
38
|
-
"raw-socket": "^1.7.0",
|
|
39
42
|
"reflect-metadata": "^0.1.13",
|
|
40
43
|
"request": "~2.88.2",
|
|
41
44
|
"request-promise": "~4.2.6",
|
|
42
45
|
"semver": "^7.3.5",
|
|
46
|
+
"socket.io-client": "^4.7.1",
|
|
47
|
+
"socket.io-msgpack-parser": "^3.0.2",
|
|
43
48
|
"socks": "~2.6.1",
|
|
44
49
|
"socks-proxy-agent": "~5.0.0",
|
|
45
50
|
"tslib": "^2.3.1",
|
|
@@ -55,7 +60,6 @@
|
|
|
55
60
|
"@semantic-release/exec": "^6.0.3",
|
|
56
61
|
"@semantic-release/git": "^10.0.1",
|
|
57
62
|
"@types/amqplib": "~0.8.2",
|
|
58
|
-
"@types/concat-stream": "^1.6.1",
|
|
59
63
|
"@types/content-type": "^1.1.5",
|
|
60
64
|
"@types/har-format": "^1.2.7",
|
|
61
65
|
"@types/jest": "^28.1.7",
|
|
@@ -70,7 +74,6 @@
|
|
|
70
74
|
"@typescript-eslint/eslint-plugin": "^5.33.1",
|
|
71
75
|
"@typescript-eslint/parser": "^5.33.1",
|
|
72
76
|
"clean-webpack-plugin": "^4.0.0",
|
|
73
|
-
"concat-stream": "^2.0.0",
|
|
74
77
|
"cross-env": "^7.0.3",
|
|
75
78
|
"eslint": "^8.22.0",
|
|
76
79
|
"eslint-config-prettier": "^8.5.0",
|
|
@@ -124,10 +127,11 @@
|
|
|
124
127
|
"pkg": {
|
|
125
128
|
"scripts": "dist/**/*.js",
|
|
126
129
|
"assets": [
|
|
127
|
-
"./node_modules
|
|
128
|
-
"./node_modules/
|
|
129
|
-
"./node_modules/
|
|
130
|
-
"./node_modules/
|
|
130
|
+
"./node_modules/win-ca/lib/crypt32-*.node",
|
|
131
|
+
"./node_modules/@neuralegion/os-service/prebuilds/win32-*/node.abi108.node",
|
|
132
|
+
"./node_modules/@neuralegion/raw-socket/prebuilds/win32-*/node.abi108.node",
|
|
133
|
+
"./node_modules/@neuralegion/raw-socket/prebuilds/linux-x64/node.abi83.glibc.node",
|
|
134
|
+
"./node_modules/@neuralegion/raw-socket/prebuilds/darwin-x64+arm64/node.abi108.node"
|
|
131
135
|
],
|
|
132
136
|
"targets": [
|
|
133
137
|
"node14-linux-x64",
|
|
@@ -153,5 +157,8 @@
|
|
|
153
157
|
"build:pkg": "pkg .",
|
|
154
158
|
"prepare": "is-ci || husky install",
|
|
155
159
|
"start": "node -r ts-node/register/transpile-only -r tsconfig-paths/register src/index.ts"
|
|
160
|
+
},
|
|
161
|
+
"brightCli": {
|
|
162
|
+
"distribution": "npm"
|
|
156
163
|
}
|
|
157
164
|
}
|