-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 924 Bytes
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 924 Bytes
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
{
"name": "flowmesh",
"version": "0.1.0",
"description": "Generic workflow/inbox automation toolkit",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"flowmesh": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"test": "vitest run",
"test:watch": "vitest",
"dev": "tsx src/cli.ts"
},
"keywords": [
"email",
"inbox",
"automation",
"workflow",
"triage"
],
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"commander": "^13.1.0",
"imapflow": "^1.2.18",
"yaml": "^2.7.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/imapflow": "^1.0.23",
"@types/node": "^22.15.2",
"eslint": "^10.1.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.58.0",
"vitest": "^3.1.2"
}
}