-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.96 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.96 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@openfn/cli",
"version": "1.33.0",
"description": "CLI devtools for the OpenFn toolchain",
"engines": {
"node": ">=18",
"pnpm": ">=7"
},
"scripts": {
"test": "pnpm ava --timeout 10m",
"test:watch": "pnpm ava -w",
"test:types": "pnpm tsc --project tsconfig.test.json",
"build": "tsup --config ./tsup.config.js",
"build:watch": "pnpm build --watch",
"openfn": "node --no-warnings dist/index.js",
"pack": "pnpm pack --pack-destination ../../dist"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"type": "module",
"bin": {
"openfn": "dist/index.js"
},
"module": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [],
"author": "Open Function Group <admin@openfn.org>",
"license": "ISC",
"devDependencies": {
"@openfn/language-collections": "^0.8.3",
"@openfn/language-common": "3.2.3",
"@types/json-diff": "^1.0.3",
"@types/lodash-es": "~4.17.12",
"@types/mock-fs": "^4.13.4",
"@types/node": "^18.19.130",
"@types/rimraf": "^3.0.2",
"@types/treeify": "^1.0.3",
"@types/ws": "^8.18.1",
"@types/yargs": "^17.0.35",
"ava": "5.3.1",
"lodash-es": "^4.17.23",
"mock-fs": "^5.5.0",
"tslib": "^2.8.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"dependencies": {
"@inquirer/prompts": "~1.2.3",
"@openfn/compiler": "workspace:*",
"@openfn/deploy": "workspace:*",
"@openfn/describe-package": "workspace:*",
"@openfn/lexicon": "workspace:^",
"@openfn/logger": "workspace:*",
"@openfn/project": "workspace:^",
"@openfn/runtime": "workspace:*",
"chalk": "^5.6.2",
"dotenv": "^17.3.1",
"dotenv-expand": "^12.0.3",
"figures": "^5.0.0",
"json-diff": "^1.0.6",
"rimraf": "^6.1.3",
"treeify": "^1.1.0",
"undici": "6.24.1",
"ws": "^8.19.0",
"yargs": "^17.7.2"
},
"files": [
"dist",
"README.md"
]
}