-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
96 lines (96 loc) · 2.51 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
{
"name": "@nuxtjs/sitemap",
"type": "module",
"version": "7.0.0",
"packageManager": "[email protected]",
"description": "Powerfully flexible XML Sitemaps that integrate seamlessly, for Nuxt.",
"author": {
"name": "Harlan Wilton",
"email": "[email protected]",
"url": "https://harlanzw.com/"
},
"license": "MIT",
"funding": "https://github.com/sponsors/harlan-zw",
"homepage": "https://github.com/nuxt-modules/sitemap#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt-modules/sitemap.git"
},
"bugs": {
"url": "https://github.com/nuxt-modules/sitemap/issues"
},
"engines": {
"node": ">=18.0.0"
},
"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",
"virtual.d.ts"
],
"scripts": {
"lint": "eslint .",
"lint:type": "tsc --noEmit",
"lint:fix": "eslint . --fix",
"client:build": "nuxi generate client",
"client:dev": "nuxi dev client --port 3300",
"build": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxt-module-build build && npm run client:build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release": "pnpm build && bumpp && pnpm -r publish",
"test": "vitest"
},
"dependencies": {
"@nuxt/devtools-kit": "^1.6.1",
"@nuxt/kit": "^3.14.1592",
"chalk": "^5.3.0",
"defu": "^6.1.4",
"h3-compression": "^0.3.2",
"nuxt-site-config": "^3.0.4",
"ofetch": "^1.4.1",
"pathe": "^1.1.2",
"pkg-types": "^1.2.1",
"radix3": "^1.1.2",
"semver": "^7.6.3",
"sirv": "^3.0.0",
"ufo": "^1.5.4"
},
"devDependencies": {
"@nuxt/content": "^2.13.4",
"@nuxt/eslint-config": "^0.7.1",
"@nuxt/module-builder": "0.8.4",
"@nuxt/test-utils": "^3.14.4",
"@nuxt/ui": "^2.19.2",
"@nuxtjs/i18n": "9.1.0",
"@nuxtjs/robots": "5.0.0",
"bumpp": "^9.8.1",
"eslint": "9.15.0",
"eslint-plugin-n": "^17.14.0",
"execa": "^9.5.1",
"nuxt": "^3.14.1592",
"nuxt-i18n-micro": "^1.33.0",
"typescript": "5.6.3",
"vitest": "^2.1.5"
},
"resolutions": {
"postcss": "8.4.47",
"typescript": "5.6.3",
"vue": "3.5.13"
},
"build": {
"externals": [
"h3",
"std-env",
"nitropack",
"consola"
]
}
}