scanoss 0.30.0 → 0.31.0
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/CHANGELOG.md +14 -0
- package/build/main/index.js +1 -2
- package/build/main/sdk/Clients/Dependency/DependencyGRPCClient.js +18 -8
- package/build/main/sdk/Clients/Dependency/IDependencyClient.d.ts +1 -2
- package/build/main/sdk/Clients/Grpc/BaseGRPCClient.js +18 -8
- package/build/main/sdk/Clients/Grpc/scanoss/api/components/v2/scanoss-components_grpc_pb.d.ts +8 -8
- package/build/main/sdk/Clients/Grpc/scanoss/api/cryptography/v2/scanoss-cryptography_grpc_pb.d.ts +8 -8
- package/build/main/sdk/Clients/Grpc/scanoss/api/dependencies/v2/scanoss-dependencies_grpc_pb.d.ts +4 -4
- package/build/main/sdk/Cryptography/CryptographyTypes.d.ts +1 -0
- package/build/main/sdk/Decompress/DecompressionManager.js +6 -2
- package/build/main/sdk/Decompress/Decompressor/DecompressGz.d.ts +10 -0
- package/build/main/sdk/Decompress/Decompressor/DecompressGz.js +32 -0
- package/build/main/sdk/Decompress/Decompressor/DecompressLibarchive.d.ts +17 -0
- package/build/main/sdk/Decompress/Decompressor/DecompressLibarchive.js +110 -0
- package/build/main/sdk/Decompress/Decompressor/DecompressTgz.js +36 -6
- package/build/main/sdk/Dependencies/DependencyTypes.d.ts +5 -2
- package/build/main/sdk/Filtering/Filtering.js +18 -8
- package/build/main/sdk/scanner/Scannable/ScannableItem.d.ts +1 -1
- package/build/main/sdk/scanner/WfpProvider/WfpCalculator/WfpCalculator.d.ts +1 -1
- package/build/main/tsconfig.tsbuildinfo +1 -1
- package/build/module/index.js +1 -2
- package/build/module/sdk/Clients/Dependency/IDependencyClient.d.ts +1 -2
- package/build/module/sdk/Clients/Grpc/scanoss/api/components/v2/scanoss-components_grpc_pb.d.ts +8 -8
- package/build/module/sdk/Clients/Grpc/scanoss/api/cryptography/v2/scanoss-cryptography_grpc_pb.d.ts +8 -8
- package/build/module/sdk/Clients/Grpc/scanoss/api/dependencies/v2/scanoss-dependencies_grpc_pb.d.ts +4 -4
- package/build/module/sdk/Cryptography/CryptographyTypes.d.ts +1 -0
- package/build/module/sdk/Decompress/DecompressionManager.js +6 -2
- package/build/module/sdk/Decompress/Decompressor/DecompressGz.d.ts +10 -0
- package/build/module/sdk/Decompress/Decompressor/DecompressGz.js +25 -0
- package/build/module/sdk/Decompress/Decompressor/DecompressLibarchive.d.ts +17 -0
- package/build/module/sdk/Decompress/Decompressor/DecompressLibarchive.js +70 -0
- package/build/module/sdk/Decompress/Decompressor/DecompressTgz.js +2 -2
- package/build/module/sdk/Dependencies/DependencyTypes.d.ts +5 -2
- package/build/module/sdk/scanner/Scannable/ScannableItem.d.ts +1 -1
- package/build/module/sdk/scanner/WfpProvider/WfpCalculator/WfpCalculator.d.ts +1 -1
- package/build/module/tsconfig.module.tsbuildinfo +1 -1
- package/package.json +5 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "scanoss",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.31.0",
|
|
4
4
|
"description": "The SCANOSS JS package provides a simple, easy to consume module for interacting with SCANOSS APIs/Engine.",
|
|
5
5
|
"main": "build/main/index.js",
|
|
6
6
|
"typings": "build/main/index.d.ts",
|
|
@@ -32,6 +32,7 @@
|
|
|
32
32
|
"google-protobuf": "^3.19.4",
|
|
33
33
|
"gunzip-maybe": "^1.4.2",
|
|
34
34
|
"isbinaryfile": "^4.0.8",
|
|
35
|
+
"libarchive.js": "^2.0.2",
|
|
35
36
|
"node-fetch": "^2.6.1",
|
|
36
37
|
"p-queue": "6.6.2",
|
|
37
38
|
"packageurl-js": "^1.2.1",
|
|
@@ -39,7 +40,7 @@
|
|
|
39
40
|
"sort-paths": "^1.1.1",
|
|
40
41
|
"stream-json": "^1.9.1",
|
|
41
42
|
"syswide-cas": "^5.3.0",
|
|
42
|
-
"tar": "
|
|
43
|
+
"tar": "7.5.7",
|
|
43
44
|
"tar-stream": "^2.2.0",
|
|
44
45
|
"uuid": "^9.0.0",
|
|
45
46
|
"xml-js": "^1.6.11"
|
|
@@ -49,7 +50,7 @@
|
|
|
49
50
|
"@istanbuljs/nyc-config-typescript": "^1.0.1",
|
|
50
51
|
"@types/chai": "^4.3.1",
|
|
51
52
|
"@types/mocha": "^9.1.1",
|
|
52
|
-
"@types/node": "^
|
|
53
|
+
"@types/node": "^25.2.0",
|
|
53
54
|
"@types/node-fetch": "^2.6.2",
|
|
54
55
|
"@types/node-gzip": "^1.1.0",
|
|
55
56
|
"@types/stream-json": "^1.7.8",
|
|
@@ -63,7 +64,7 @@
|
|
|
63
64
|
"nyc": "^15.1.0",
|
|
64
65
|
"prettier": "^2.8.8",
|
|
65
66
|
"ts-node": "^10.9.1",
|
|
66
|
-
"typescript": "^5.
|
|
67
|
+
"typescript": "^5.9.3"
|
|
67
68
|
},
|
|
68
69
|
"files": [
|
|
69
70
|
"build/main",
|