-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.35 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.35 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
{
"name": "groupdocs-comparison-batch-word-nodejs",
"version": "1.0.0",
"description": "Sample project demonstrating high-performance batch comparison of Word documents using GroupDocs.Comparison for Node.js via Java",
"main": "src/batchComparison.js",
"scripts": {
"start": "set JAVA_TOOL_OPTIONS=--enable-native-access=ALL-UNNAMED && node src/batchComparison.js",
"example:basic": "set JAVA_TOOL_OPTIONS=--enable-native-access=ALL-UNNAMED && node src/examples/basicBatchComparison.js",
"example:parallel": "set JAVA_TOOL_OPTIONS=--enable-native-access=ALL-UNNAMED && node src/examples/parallelBatchComparison.js",
"example:optimized": "set JAVA_TOOL_OPTIONS=--enable-native-access=ALL-UNNAMED && node src/examples/optimizedBatchComparison.js",
"example:progress": "set JAVA_TOOL_OPTIONS=--enable-native-access=ALL-UNNAMED && node src/examples/batchWithProgress.js",
"benchmark": "set JAVA_TOOL_OPTIONS=--enable-native-access=ALL-UNNAMED && node src/examples/performanceBenchmark.js"
},
"keywords": [
"groupdocs",
"comparison",
"word",
"docx",
"batch",
"performance",
"scalability",
"document-comparison",
"nodejs",
"parallel-processing"
],
"author": "GroupDocs",
"license": "MIT",
"dependencies": {
"@groupdocs/groupdocs.comparison": "^25.11.0"
},
"engines": {
"node": ">=20.0.0"
}
}