This repository has been archived by the owner on Sep 12, 2024. It is now read-only.
forked from nuxt-community/sitemap-module
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
executable file
·116 lines (116 loc) · 2.94 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@funken-studio/sitemap-nuxt-3",
"version": "4.0.4",
"description": "Automatically generate or serve dynamic sitemap.xml for Nuxt projects",
"keywords": [
"nuxt 3",
"vue 3",
"nuxt",
"nuxt.js",
"nuxtjs",
"seo",
"sitemap",
"sitemap.xml",
"ssr"
],
"repository": {
"type": "git",
"url": "git+https://github.com/funken-studio/sitemap-module-nuxt-3.git"
},
"license": "MIT",
"contributors": [
"Nicolas Pennec",
"Pooya Parsa",
"Adrian Jakob"
],
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"files": [
"dist"
],
"type": "module",
"main": "dist/module.cjs",
"module": "dist/module.mjs",
"scripts": {
"build-module": "nuxt-build-module && yarn unit",
"build": "npx nuxi build test/fixture",
"dev": "npx nuxi dev test/fixture",
"format": "yarn lint --fix",
"generate": "npx nuxi generate test/fixture",
"lint": "eslint . --ext js,vue",
"preview": "standard-version --dry-run",
"release": "standard-version && git push --follow-tags && npm publish",
"start": "npx nuxi start test/fixture",
"test": "yarn lint && yarn unit",
"unit": "vitest run",
"unit-watch": "vitest"
},
"lint-staged": {
"*.{js,vue}": [
"eslint --fix"
]
},
"dependencies": {
"@babel/core": "^7.18.6",
"@nuxt/kit": "^3.0.0",
"async-cache": "^1.1.0",
"consola": "^2.15.0",
"etag": "^1.8.1",
"fresh": "^0.5.2",
"fs-extra": "^8.1.0",
"is-https": "^2.0.2",
"lodash.unionby": "^4.8.0",
"minimatch": "^3.0.4",
"sitemap": "^4.1.1"
},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@nuxt/module-builder": "latest",
"@nuxt/test-utils": "^3.0.0",
"@nuxtjs/eslint-config": "^10.0.0",
"@nuxtjs/eslint-config-typescript": "latest",
"@types/babel__core": "^7.1.20",
"@types/fs-extra": "^9.0.13",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^9.1.0",
"babel-eslint": "^10.1.0",
"codecov": "latest",
"eslint": "latest",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.4.1",
"husky": "latest",
"lint-staged": "latest",
"node-fetch": "latest",
"nuxt": "^3.0.0",
"nuxt-i18n": "npm:@nuxtjs/i18n-edge",
"prettier": "latest",
"prettier-eslint": "^15.0.1",
"standard-version": "latest",
"vitest": "^0.15.2"
},
"engines": {
"node": ">=16.11",
"npm": ">=5.0.0"
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/funken-studio/sitemap-module-nuxt-3/issues"
},
"homepage": "https://github.com/funken-studio/sitemap-module-nuxt-3#readme",
"directories": {
"doc": "docs",
"src": "src",
"dist": "dist",
"test": "test"
},
"author": "d3xter-dev"
}