-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.32 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.32 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@ghostpaw/email",
"version": "0.2.3",
"description": "Standalone IMAP/SMTP email engine for Node.js — SQLite local cache, threading, sync, zero dependencies, with a built-in LLM tool facade",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"email": "./dist/cli.js"
},
"files": [
"dist",
"SKILL.md"
],
"sideEffects": false,
"scripts": {
"build": "tsup && node scripts/fix-node-sqlite.mjs",
"dev": "tsup --watch",
"test": "node --no-warnings --experimental-strip-types --test --test-reporter=dot 'src/**/*.test.ts'",
"lint": "biome check",
"lint:fix": "biome check --fix",
"format": "biome format --write",
"typecheck": "tsc --noEmit",
"check": "biome check && tsc --noEmit",
"clean": "rm -rf dist",
"version": "biome format --write package.json package-lock.json && git add package.json package-lock.json",
"prepublishOnly": "npm run check && npm run build",
"release:patch": "npm version patch && git push && git push --tags",
"release:minor": "npm version minor && git push && git push --tags",
"release:major": "npm version major && git push && git push --tags"
},
"engines": {
"node": ">=24"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"email",
"mail",
"imap",
"imap-client",
"smtp",
"smtp-client",
"mailbox",
"inbox",
"mime",
"threading",
"sync",
"idle",
"local-first",
"sqlite",
"llm",
"ai",
"agent",
"tools",
"typescript",
"zero-dependencies"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/GhostPawJS/email.git"
},
"author": {
"name": "Anonyfox",
"email": "max@anonyfox.com",
"url": "https://anonyfox.com"
},
"homepage": "https://github.com/GhostPawJS/email",
"bugs": {
"url": "https://github.com/GhostPawJS/email/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/Anonyfox"
},
"volta": {
"node": "24.14.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@types/node": "^25.3.0",
"citty": "^0.1.6",
"esbuild": "^0.27.4",
"tsup": "^8.4.0",
"typescript": "^5.9.3"
}
}