-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.2 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.2 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
{
"name": "@vituum/vite-plugin-send",
"version": "2.0.1",
"type": "module",
"main": "index.js",
"types": "types/index.d.ts",
"description": "Vite plugin for sending emails via nodemailer for testing",
"keywords": [
"vituum",
"vite",
"vite-plugin"
],
"scripts": {
"lint": "npm run eslint && npm run tsc",
"tsc": "tsc",
"eslint": "eslint '**/*.js'",
"eslint-fix": "eslint '**/*.js' --fix",
"send": "node node_modules/@vituum/vite-plugin-send/send.js",
"publish-next": "npm publish --tag next"
},
"dependencies": {
"nodemailer": "^8.0",
"vituum": "^2.0"
},
"peerDependencies": {
"vite": "^8.0"
},
"devDependencies": {
"@eslint/js": "^10.0",
"@stylistic/eslint-plugin": "^5.10",
"@types/node": "^25.5",
"@types/nodemailer": "^7.0",
"eslint": "^10.0",
"globals": "^17.4",
"typescript": "^5.9"
},
"files": [
"index.js",
"send.js",
"types"
],
"exports": {
".": {
"default": "./index.js",
"types": "./types/index.d.ts"
}
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vituum/vite-plugin-send.git"
}
}