-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.02 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.02 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
{
"name": "nestjs-batch",
"version": "0.1.0",
"description": "High-performance hybrid batch framework for Nest.js powered by Rust",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"build:engine": "npm run build --workspace=packages/engine",
"build:core": "npm run build --workspace=packages/core",
"build:example": "npm run build --workspace=examples/basic-app",
"dev": "npm run dev --workspace=examples/basic-app",
"test": "npm run test --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"clean": "npm run clean --workspaces --if-present && rm -rf node_modules"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.4.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"keywords": [
"nestjs",
"batch",
"rust",
"napi",
"chunk-processing",
"spring-batch"
],
"author": "anonymous.rs",
"license": "MIT"
}