-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.67 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.67 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
{
"name": "muster",
"version": "0.0.1",
"description": "Structured evidence collection over email — when you need a record of who said what.",
"type": "module",
"engines": {
"node": ">=20.10"
},
"bin": {
"muster": "./src/cli/index.ts"
},
"exports": {
"./lib/validate": "./src/lib/validate.ts",
"./lib/log": "./src/lib/log.ts",
"./lib/db": "./src/lib/db.ts",
"./lib/audit": "./src/lib/audit.ts",
"./lib/mail/outbound": "./src/lib/mail/outbound.ts",
"./lib/mail/inbound": "./src/lib/mail/inbound.ts",
"./lib/mail/types": "./src/lib/mail/types.ts"
},
"scripts": {
"muster": "tsx src/cli/index.ts",
"build:types": "tsx scripts/build-schema-types.ts",
"typecheck": "tsc --noEmit",
"test": "node --import tsx --test \"src/**/*.test.ts\"",
"db:up": "docker compose up -d postgres",
"db:down": "docker compose down",
"lint": "eslint \"src/**/*.ts\""
},
"dependencies": {
"@hono/node-server": "^2.0.3",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"commander": "^12.1.0",
"hono": "^4.12.21",
"imapflow": "^1.0.170",
"js-yaml": "^4.1.1",
"mailparser": "^3.7.1",
"nodemailer": "^6.9.16",
"openai": "^6.38.0",
"postgres": "^3.4.5",
"tsx": "^4.19.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/js-yaml": "^4.0.9",
"@types/mailparser": "^3.4.4",
"@types/node": "^22.10.2",
"@types/nodemailer": "^6.4.17",
"@typescript-eslint/eslint-plugin": "^8.59.4",
"@typescript-eslint/parser": "^8.59.4",
"eslint": "^10.4.0",
"json-schema-to-typescript": "^15.0.3",
"typescript": "^5.7.2"
}
}