-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.3 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.3 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
{
"name": "@openfn/compiler",
"version": "1.2.4",
"description": "Compiler and language tooling for openfn jobs.",
"author": "Open Function Group <admin@openfn.org>",
"license": "ISC",
"type": "module",
"engines": {
"node": ">=16",
"pnpm": ">=7"
},
"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 --noEmit --project tsconfig.json",
"build": "tsup --config ../../tsup.config.js src/index.ts",
"build:watch": "pnpm build --watch",
"parse": "node --loader @swc-node/register/esm src/cli/parse.ts",
"pack": "pnpm pack --pack-destination ../../dist"
},
"keywords": [],
"devDependencies": {
"@types/node": "^18.19.130",
"@types/yargs": "^17.0.35",
"ava": "5.3.1",
"tslib": "^2.8.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"yargs": "^17.7.2"
},
"dependencies": {
"@openfn/describe-package": "workspace:*",
"@openfn/lexicon": "workspace:^",
"@openfn/logger": "workspace:*",
"acorn": "^8.16.0",
"ast-types": "^0.14.2",
"recast": "^0.21.5"
},
"files": [
"dist",
"README.md"
]
}