-
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.37 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.37 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": "email-task",
"version": "1.3.3",
"description": "基于邮件的任务分发服务",
"repository": {
"type": "git",
"url": "git@github.com:Yangholmes/email-task.git"
},
"homepage": "https://github.com/Yangholmes/email-task",
"main": "dist/index.js",
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"build:dev": "pnpm build:js:dev && pnpm build:types",
"build": "pnpm build:js && pnpm build:types",
"build:js:dev": "node ./build.dev.js",
"build:js": "node ./build.js",
"build:types": "tsc -p tsconfig.json",
"start": "node ./build.dev.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"files": [
"dist/*.js",
"dist/*.d.ts"
],
"keywords": [
"email"
],
"author": "Yangholmes",
"license": "MIT",
"dependencies": {
"imap": "^0.8.19",
"mailparser": "^3.6.4",
"nodemailer": "^6.10.0"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/imap": "^0.8.37",
"@types/mailparser": "^3.4.0",
"@types/node": "^20.2.5",
"@types/nodemailer": "^6.4.17",
"@vitest/coverage-istanbul": "3.0.7",
"dotenv": "^16.1.3",
"esbuild": "^0.17.19",
"eslint": "^9.21.0",
"globals": "^16.0.0",
"typescript": "^5.8.2",
"typescript-eslint": "^8.25.0",
"vitest": "^3.0.7"
}
}