-
-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathpackage.json
executable file
·102 lines (102 loc) · 2.76 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
102
{
"name": "@nuxtjs/seo",
"type": "module",
"version": "2.1.1",
"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"
},
"./content": {
"types": "./dist/content.d.ts",
"import": "./dist/content.mjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"typesVersions": {
"*": {
"content": [
"dist/content"
]
}
},
"files": [
"const.d.ts",
"content.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",
"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.15.4",
"@nuxtjs/robots": "^5.2.2",
"@nuxtjs/sitemap": "^7.2.4",
"nuxt-link-checker": "^4.1.0",
"nuxt-og-image": "^4.1.2",
"nuxt-schema-org": "^4.1.1",
"nuxt-seo-utils": "^6.0.8",
"nuxt-site-config": "^3.0.6"
},
"devDependencies": {
"@antfu/eslint-config": "^4.1.0",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "3.15.4",
"@nuxt/test-utils": "^3.15.4",
"@nuxtjs/i18n": "9.1.4",
"@vue/test-utils": "^2.4.6",
"bumpp": "^10.0.1",
"eslint": "^9.19.0",
"execa": "^9.5.2",
"happy-dom": "^16.7.3",
"nitropack": "^2.10.4",
"nuxt": "3.15.4",
"typescript": "5.7.3",
"vitest": "^3.0.4"
},
"resolutions": {
"@nuxt/ui": "3.0.0-alpha.11",
"@nuxt/ui-pro": "3.0.0-alpha.11",
"@tailwindcss/postcss": "4.0.0-beta.9",
"@tailwindcss/vite": "4.0.0-beta.9",
"node-fetch-native": "1.6.6",
"tailwind-variants": "0.3.0",
"tailwindcss": "4.0.0-beta.9",
"typescript": "5.6.3"
},
"publishConfig": {
"resolutions": {},
"scripts": {},
"devDependencies": {}
}
}