forked from chekusu/mails
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.89 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.89 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
{
"name": "mails-agent",
"version": "1.9.1",
"description": "Email infrastructure for AI agents. Send, receive, search, and extract verification codes.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mails": "dist/cli.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "bun build src/cli/index.ts --outfile dist/cli.js --target bun && bun build src/index.ts --outfile dist/index.js --target bun",
"build:compile": "bun build src/cli/index.ts --compile --outfile mails",
"dev": "bun run src/cli/index.ts",
"typecheck": "tsc --noEmit",
"test": "bun test test/unit test/e2e/flow.test.ts test/e2e/sqlite-search.test.ts",
"test:coverage": "bun test --coverage test/unit test/e2e/flow.test.ts",
"test:e2e": "bun test test/e2e/claim-flow.test.ts test/e2e/remote-worker.test.ts test/e2e/full-hosted.test.ts test/e2e/full-selfhosted.test.ts",
"test:live": "bun test test/e2e/live.test.ts",
"test:cloud": "bun run test/e2e/cloud-e2e.ts",
"test:all": "bun test"
},
"files": [
"dist",
"skill.md",
"README.md",
"README.ja.md",
"README.zh.md"
],
"keywords": [
"email",
"mail",
"agent",
"ai",
"ai-agent",
"llm",
"resend",
"cloudflare",
"cloudflare-workers",
"cli",
"verification-code",
"webhook",
"sdk"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Digidai/mails.git"
},
"homepage": "https://github.com/Digidai/mails",
"bugs": {
"url": "https://github.com/Digidai/mails/issues"
},
"author": "Gene Dai",
"contributors": [
"turing <o.u.turing@gmail.com> (original mails project)"
],
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/bun": "^1.2.0",
"postal-mime": "^2.7.4",
"typescript": "^5.7.0"
}
}