forked from harlan-zw/nuxt-seo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·87 lines (87 loc) · 2.41 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
{
"name": "@nuxtjs/seo",
"type": "module",
"version": "2.0.0-rc.23",
"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"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"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 && vitest --run --exclude **/__runtime__ && pnpm test:runtime",
"test:runtime": "cd test/fixtures/basic && vitest --run",
"typecheck": "npx vue-tsc --noEmit --strict"
},
"dependencies": {
"@nuxt/kit": "^3.13.2",
"@nuxtjs/robots": "^4.1.7",
"@nuxtjs/sitemap": "^6.1.1",
"defu": "^6.1.4",
"nuxt-link-checker": "^3.1.2",
"nuxt-og-image": "^3.0.3",
"nuxt-schema-org": "^3.4.0",
"nuxt-seo-experiments": "^4.0.1",
"nuxt-site-config": "^2.2.18",
"nuxt-site-config-kit": "^2.2.18",
"pkg-types": "^1.2.0",
"ufo": "^1.5.4"
},
"devDependencies": {
"@antfu/eslint-config": "^3.7.3",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.13.2",
"@nuxt/test-utils": "^3.14.2",
"@nuxt/ui": "^2.18.6",
"@nuxtjs/i18n": "^8.5.5",
"@vue/test-utils": "^2.4.6",
"bumpp": "^9.6.1",
"eslint": "^9.11.1",
"execa": "^9.4.0",
"happy-dom": "^15.7.4",
"nitropack": "^2.9.7",
"nuxt": "^3.13.2",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
},
"build": {
"externals": [
"ofetch",
"consola/utils"
]
},
"resolutions": {
"@nuxt/schema": "3.13.1",
"nuxt": "3.13.1",
"typescript": "5.4.5"
}
}