-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
70 lines (70 loc) · 1.74 KB
/
package.json
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
{
"name": "@openfn/cli",
"version": "1.9.1",
"description": "CLI devtools for the openfn toolchain.",
"engines": {
"node": ">=18",
"pnpm": ">=7"
},
"scripts": {
"test": "pnpm ava",
"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 <[email protected]>",
"license": "ISC",
"devDependencies": {
"@openfn/language-collections": "^0.6.2",
"@openfn/language-common": "2.0.0-rc3",
"@openfn/lexicon": "workspace:^",
"@types/mock-fs": "^4.13.1",
"@types/node": "^18.15.13",
"@types/rimraf": "^3.0.2",
"@types/treeify": "^1.0.0",
"@types/ws": "^8.5.10",
"@types/yargs": "^17.0.24",
"ava": "5.3.1",
"mock-fs": "^5.4.1",
"tslib": "^2.4.0",
"tsup": "^7.2.0",
"typescript": "^5.1.6"
},
"dependencies": {
"@inquirer/prompts": "^1.1.4",
"@openfn/compiler": "workspace:*",
"@openfn/deploy": "workspace:*",
"@openfn/describe-package": "workspace:*",
"@openfn/logger": "workspace:*",
"@openfn/runtime": "workspace:*",
"chalk": "^5.1.2",
"figures": "^5.0.0",
"rimraf": "^3.0.2",
"treeify": "^1.1.0",
"undici": "^7.1.0",
"ws": "^8.18.0",
"yargs": "^17.7.2"
},
"files": [
"dist",
"README.md"
]
}