-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.78 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@openfn/ws-worker",
"version": "1.27.1",
"description": "A Websocket Worker to connect Lightning to a Runtime Engine",
"main": "dist/index.js",
"type": "module",
"scripts": {
"test": "pnpm ava --serial",
"test:types": "pnpm tsc --noEmit --project tsconfig.json",
"build": "tsup --config tsup.config.js",
"build:watch": "pnpm build --watch",
"start": "node --loader @swc-node/register/esm src/start.ts",
"start:prod": "node dist/start.js",
"start:watch": "nodemon -e ts,js --watch ../runtime-manager/dist --watch ./src --exec 'pnpm start'",
"pack": "pnpm pack --pack-destination ../../dist"
},
"bin": {
"worker": "dist/start.js"
},
"author": "Open Function Group <admin@openfn.org>",
"license": "ISC",
"dependencies": {
"@koa/bodyparser": "^6.1.0",
"@koa/router": "^15.4.0",
"@openfn/engine-multi": "workspace:*",
"@openfn/lexicon": "workspace:^",
"@openfn/logger": "workspace:*",
"@openfn/runtime": "workspace:*",
"@sentry/node": "^10.44.0",
"@types/koa-logger": "^3.1.5",
"@types/ws": "^8.18.1",
"fast-safe-stringify": "^2.1.1",
"figures": "^5.0.0",
"human-id": "^4.1.3",
"jose": "^4.15.9",
"koa": "^2.16.4",
"koa-logger": "^3.2.1",
"phoenix": "1.7.10",
"ws": "^8.19.0"
},
"devDependencies": {
"@openfn/lightning-mock": "workspace:*",
"@types/koa": "^2.15.0",
"@types/koa__router": "^12.0.5",
"@types/node": "^18.19.130",
"@types/nodemon": "1.19.3",
"@types/phoenix": "^1.6.7",
"@types/yargs": "^17.0.35",
"ava": "5.3.1",
"nodemon": "3.1.14",
"sentry-testkit": "^6.2.2",
"tslib": "^2.8.1",
"tsup": "^8.5.1",
"typescript": "^4.9.5",
"yargs": "^17.7.2"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md"
]
}