-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.16 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.16 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
39
40
41
{
"name": "@openfn/engine-multi",
"version": "1.10.6",
"description": "Multi-process runtime engine",
"main": "dist/index.js",
"type": "module",
"scripts": {
"test": "pnpm ava --serial",
"test:types": "pnpm tsc --noEmit --project tsconfig.json",
"test:mem": "NODE_OPTIONS=\"--max-old-space-size=90 --experimental-vm-modules\" pnpm exec tsx test/memtest.ts",
"build": "tsup --config ./tsup.config.js",
"build:watch": "pnpm build --watch",
"pack": "pnpm pack --pack-destination ../../dist"
},
"author": "Open Function Group <admin@openfn.org>",
"license": "ISC",
"dependencies": {
"@openfn/compiler": "workspace:*",
"@openfn/language-common": "3.2.3",
"@openfn/lexicon": "workspace:^",
"@openfn/logger": "workspace:*",
"@openfn/runtime": "workspace:*",
"fast-safe-stringify": "^2.1.1",
"json-stream-stringify": "^3.1.6"
},
"devDependencies": {
"@types/node": "^18.19.127",
"ava": "7.0.0",
"tslib": "^2.8.1",
"tsm": "^2.3.0",
"tsup": "^8.5.1",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
},
"files": [
"dist/index.js",
"dist/worker/",
"README.md",
"CHANGELOG.md"
]
}