-
-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
executable file
·101 lines (101 loc) · 2.72 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
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@nuxtjs/seo",
"type": "module",
"version": "2.0.2",
"packageManager": "[email protected]",
"description": "The all-in-one SEO layer for Nuxt 3.",
"author": {
"name": "Harlan Wilton",
"email": "[email protected]",
"url": "https://harlanzw.com/"
},
"license": "MIT",
"funding": "https://github.com/sponsors/harlan-zw",
"homepage": "https://nuxtseo.com/",
"repository": {
"type": "git",
"url": "git+https://github.com/harlan-zw/nuxt-seo.git"
},
"bugs": {
"url": "https://github.com/harlan-zw/nuxt-seo/issues"
},
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
},
"./const": {
"types": "./dist/const.d.ts",
"import": "./dist/const.mjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"const.d.ts",
"dist"
],
"scripts": {
"build": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:docs": "nuxi dev docs",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"lint": "eslint . --fix",
"release": "pnpm build && bumpp && pnpm -r publish --access public",
"test": " pnpm dev:prepare && nuxi prepare test/fixtures/basic && nuxi prepare test/fixtures/i18n && vitest",
"typecheck": "pnpm dev:prepare && tsc --noEmit && npx vue-tsc --noEmit --strict"
},
"dependencies": {
"@nuxt/kit": "3.14.1592",
"@nuxtjs/robots": "^5.0.0",
"@nuxtjs/sitemap": "^7.0.0",
"nuxt-link-checker": "^4.0.0",
"nuxt-og-image": "^4.0.0",
"nuxt-schema-org": "^4.0.2",
"nuxt-seo-utils": "^6.0.2",
"nuxt-site-config": "^3.0.4"
},
"devDependencies": {
"@antfu/eslint-config": "^3.9.2",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "3.14.1592",
"@nuxt/test-utils": "^3.14.4",
"@nuxtjs/i18n": "^9.1.0",
"@vue/test-utils": "^2.4.6",
"bumpp": "^9.8.1",
"eslint": "^9.15.0",
"execa": "^9.5.1",
"happy-dom": "^15.11.6",
"nitropack": "^2.10.4",
"nuxt": "3.14.1592",
"typescript": "5.6.3",
"vitest": "^2.1.5"
},
"build": {
"externals": [
"ofetch",
"consola/utils"
]
},
"pnpm": {
"patchedDependencies": {
"@nuxt/ui": "patches/@nuxt__ui.patch",
"@nuxt/content": "patches/@nuxt__content.patch"
}
},
"resolutions": {
"@nuxt/kit": "3.14.1592",
"nuxt": "3.14.1592",
"ofetch": "1.4.1",
"tailwindcss": "4.0.0-alpha.24",
"typescript": "5.6.3",
"vue": "3.5.12",
"vue-router": "4.4.5"
},
"publishConfig": {
"resolutions": {},
"scripts": {},
"devDependencies": {}
}
}