This repository has been archived by the owner on Jun 22, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
75 lines (75 loc) · 2.04 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
{
"name": "@vue-email/nuxt",
"type": "module",
"version": "0.8.19",
"packageManager": "[email protected]",
"description": "Nuxt package for vue-email",
"author": "David Arenas <[email protected]> (https://github.com/Dave136/)",
"license": "MIT",
"homepage": "https://vuemail.net/",
"maintainers": [
{
"name": "Dave136",
"email": "[email protected]",
"url": "https://github.com/Dave136"
},
{
"name": "Flowko",
"email": "[email protected]",
"url": "https://github.com/Flowko"
}
],
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"stub": "nuxt-build-module build --stub",
"build": "pnpm dev:prepare && pnpm build:module && pnpm build:client",
"build:module": "nuxt-module-build build",
"build:client": "nuxi generate client",
"build:play": "nuxi build playground",
"preview:play": "nuxi preview playground",
"prepack": "pnpm build",
"dev": "nuxi dev playground",
"dev:client": "nuxi dev client",
"dev:prepare": "pnpm stub && nuxt-module-build prepare && nuxi prepare playground && nuxi prepare client",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest watch",
"release": "bumpp"
},
"dependencies": {
"@nuxt/kit": "^3.10.0",
"@vue-email/compiler": "^0.8.14",
"defu": "^6.1.4",
"destr": "^2.0.2",
"json5": "^2.2.3",
"sirv": "^2.0.4",
"vue-component-meta": "^1.8.27",
"vue-email": "^0.8.10"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.3",
"@nuxt/devtools": "latest",
"@nuxt/module-builder": "^0.5.5",
"@nuxt/schema": "^3.10.0",
"@nuxt/test-utils": "^3.11.0",
"@types/node": "^20.11.10",
"bumpp": "^9.3.0",
"destr": "^2.0.2",
"eslint": "^8.56.0",
"jiti": "^1.21.0",
"nuxt": "^3.10.0",
"vitest": "^1.2.2"
}
}