-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.41 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.41 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
{
"name": "@openfn/runtime",
"version": "1.8.7",
"description": "Job processing runtime.",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "pnpm ava",
"test:watch": "pnpm ava -w",
"test:types": "pnpm tsc --project tsconfig.test.json",
"test:memory": "pnpm ava --config memtest.ava.config.cjs",
"build": "tsup --config ../../tsup.config.js src/index.ts",
"build:watch": "pnpm build --watch",
"pack": "pnpm pack --pack-destination ../../dist"
},
"keywords": [],
"author": "Open Function Group <admin@openfn.org>",
"license": "ISC",
"devDependencies": {
"@openfn/compiler": "workspace:^",
"@openfn/language-common": "3.2.3",
"@openfn/lexicon": "workspace:^",
"@types/mock-fs": "^4.13.4",
"@types/node": "^18.19.130",
"@types/semver": "^7.7.1",
"ava": "5.3.1",
"mock-fs": "^5.5.0",
"recast": "^0.21.5",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"files": [
"dist/index.js",
"dist/index.d.ts",
"README.md"
],
"dependencies": {
"@openfn/logger": "workspace:*",
"fast-safe-stringify": "^2.1.1",
"json-stream-stringify": "^3.1.6",
"semver": "^7.7.4",
"source-map": "^0.7.6"
}
}