forked from nuxt-modules/sitemap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.26 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
{
"name": "nuxt-simple-sitemap",
"type": "module",
"version": "4.1.6",
"packageManager": "[email protected]",
"description": "Powerfully flexible XML Sitemaps that integrate seamlessly, for Nuxt.",
"license": "MIT",
"funding": "https://github.com/sponsors/harlan-zw",
"homepage": "https://github.com/harlan-zw/nuxt-simple-sitemap#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/harlan-zw/nuxt-simple-sitemap.git"
},
"bugs": {
"url": "https://github.com/harlan-zw/nuxt-simple-sitemap/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": {
"lint": "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:devtool": "nuxi dev .playground-devtools",
"dev:build": "nuxi build .playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare .playground",
"release": "bumpp package.json --commit --push --tag",
"test": "vitest"
},
"dependencies": {
"@nuxt/devtools-kit": "^1.0.3",
"@nuxt/devtools-ui-kit": "^1.0.3",
"@nuxt/kit": "^3.8.2",
"chalk": "^5.3.0",
"defu": "^6.1.3",
"nuxt-site-config": "^1.6.1",
"nuxt-site-config-kit": "^1.6.1",
"ofetch": "^1.3.3",
"pathe": "^1.1.1",
"radix3": "^1.1.0",
"semver": "^7.5.4",
"sirv": "^2.0.3",
"site-config-stack": "^1.6.1",
"ufo": "^1.3.2"
},
"devDependencies": {
"@antfu/eslint-config": "^2.0.0",
"@nuxt/content": "^2.9.0",
"@nuxt/kit": "^3.8.2",
"@nuxt/module-builder": "^0.5.4",
"@nuxt/test-utils": "^3.8.1",
"@nuxt/ui": "^2.10.0",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@nuxtjs/i18n": "8.0.0-rc.5",
"bumpp": "^9.2.0",
"eslint": "8.54.0",
"execa": "^8.0.1",
"nuxt": "^3.8.2",
"nuxt-icon": "^0.6.6",
"nuxt-simple-robots": "^3.1.9",
"vitest": "^0.34.6"
},
"build": {
"externals": [
"h3",
"nitropack"
]
}
}