-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.25 KB
/
package.json
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
{
"name": "resend-nuxt",
"type": "module",
"version": "0.2.0",
"license": "MIT",
"packageManager": "[email protected]",
"sideEffects": false,
"description": "Resend module for Nuxt 3",
"engines": {
"node": ">=16",
"pnpm": ">=8.6"
},
"keywords": [
"nuxt 3",
"nuxt",
"module",
"resend",
"emails",
"email",
"node",
"nuxt SSR"
],
"author": {
"name": "Damilare Anjorin",
"url": "https://github.com/dammy001"
},
"homepage": "https://github.com/dammy001/resend-nuxt#readme",
"bugs": {
"url": "https://github.com/dammy001/resend-nuxt/issues"
},
"repository": {
"type": "git",
"url": "git+https://https://github.com/dammy001/resend-nuxt.git"
},
"exports": {
".": {
"require": "./module.cjs",
"import": "./dist/module.mjs"
},
"./module": {
"require": "./module.cjs",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"types": "./dist/types.d.ts",
"files": [
"dist",
"*.cjs"
],
"scripts": {
"build": "nuxt-build-module",
"stub": "nuxt-build-module --stub",
"dev": "nuxi dev playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"play:build": "nuxi generate playground",
"play:preview": "nuxi preview playground",
"prepublishOnly": "npm run build",
"format": "prettier --write --cache \"./**/*.{vue,js,ts,md}\"",
"format:check": "prettier --check \"./**/*.{vue,js,ts,md}\"",
"lint": "eslint --cache \"./**/*.{vue,js,ts}\"",
"lint:fix": "eslint --cache --fix \"./**/*.{vue,js,ts}\"",
"release": "bumpp package.json --commit --push --tag && pnpm -r publish --access public --no-git-checks",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@nuxt/kit": "^3.6.0",
"defu": "^6.1.2",
"resend": "^4.0.0"
},
"devDependencies": {
"@damilaredev/eslint-config": "^0.0.19",
"@nuxt/module-builder": "^0.8.0",
"@nuxt/schema": "^3.6.0",
"@types/node": "^22.0.0",
"bumpp": "^9.1.1",
"eslint": "^8.43.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"nuxt": "^3.6.0",
"prettier": "^3.0.0",
"typescript": "^5.1.3",
"unbuild": "^2.0.0"
},
"publishConfig": {
"access": "public"
}
}