forked from harlan-zw/nuxt-seo-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.08 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
{
"name": "nuxt-seo-experiments",
"type": "module",
"version": "4.0.0-rc.6",
"packageManager": "[email protected]",
"description": "Powerful SEO DX improvements that may or may not land in the Nuxt core.",
"license": "MIT",
"funding": "https://github.com/sponsors/harlan-zw",
"homepage": "https://nuxtseo.com/experiments",
"repository": {
"type": "git",
"url": "git+https://github.com/harlan-zw/nuxt-seo-experiments.git"
},
"bugs": {
"url": "https://github.com/harlan-zw/nuxt-seo-experiments/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"
],
"build": {
"externals": [
"@unhead/shared",
"unhead"
]
},
"scripts": {
"lint": "eslint . --fix",
"stub": "nuxt-build-module build --stub && nuxt-module-build prepare",
"build": "pnpm stub && nuxt-module-build 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": "nuxi prepare playground && vitest"
},
"dependencies": {
"@nuxt/kit": "^3.11.2",
"@unhead/addons": "^1.9.4",
"defu": "^6.1.4",
"escape-string-regexp": "^5.0.0",
"fast-glob": "^3.3.2",
"image-size": "^1.1.1",
"nuxt-site-config": "^2.2.11",
"nuxt-site-config-kit": "^2.2.11",
"pathe": "^1.1.2",
"ufo": "^1.5.3"
},
"devDependencies": {
"@antfu/eslint-config": "^2.12.2",
"@nuxt/module-builder": "^0.5.5",
"@nuxt/test-utils": "^3.12.0",
"@nuxt/ui": "^2.15.1",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@nuxtjs/i18n": "8.3.0",
"@unhead/shared": "^1.9.4",
"bumpp": "^9.4.0",
"cheerio": "1.0.0-rc.12",
"eslint": "^9.0.0",
"nuxt": "^3.11.2",
"nuxt-icon": "^0.6.10",
"playwright-core": "^1.43.0",
"sass": "^1.74.1",
"vitest": "^1.4.0"
}
}