-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
88 lines (88 loc) · 2.72 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
{
"name": "nuxt-seo-utils",
"type": "module",
"version": "6.0.8",
"packageManager": "[email protected]",
"description": "SEO utilities to improve your Nuxt sites discoverability and shareability",
"license": "MIT",
"funding": "https://github.com/sponsors/harlan-zw",
"homepage": "https://nuxtseo.com/docs/utils",
"repository": {
"type": "git",
"url": "git+https://github.com/harlan-zw/nuxt-seo-utils.git"
},
"bugs": {
"url": "https://github.com/harlan-zw/nuxt-seo-utils/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 -x \"npx changelogen --output=CHANGELOG.log\" && pnpm publish",
"lint:docs": "markdownlint ./docs/content && case-police 'docs/content/**/*.md' *.md",
"lint:docs:fix": "markdownlint ./docs/content --fix && case-police 'docs/content/**/*.md' *.md --fix",
"twoslash:verify": "nuxt-content-twoslash verify --content-dir docs/content",
"test": "pnpm dev:prepare && vitest --run --exclude **/__runtime__ && pnpm test:runtime",
"test:runtime": "cd test/fixtures/basic && vitest --run"
},
"dependencies": {
"@nuxt/kit": "^3.15.1",
"@unhead/addons": "^1.11.16",
"@unhead/schema": "^1.11.16",
"defu": "^6.1.4",
"escape-string-regexp": "^5.0.0",
"fast-glob": "^3.3.3",
"image-size": "^1.2.0",
"mlly": "^1.7.4",
"nuxt-site-config": "^3.0.6",
"pathe": "^2.0.1",
"scule": "^1.3.0",
"ufo": "^1.5.4"
},
"devDependencies": {
"@antfu/eslint-config": "3.11.2",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/test-utils": "^3.15.4",
"@nuxt/ui": "^2.20.0",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@nuxtjs/i18n": "^9.1.1",
"@unhead/shared": "^1.11.16",
"@vue/test-utils": "^2.4.6",
"bumpp": "^9.10.0",
"case-police": "^0.7.2",
"cheerio": "1.0.0",
"eslint": "^9.18.0",
"happy-dom": "^16.5.3",
"markdownlint-cli": "^0.43.0",
"nuxt": "^3.15.1",
"nuxt-content-twoslash": "^0.1.2",
"playwright-core": "^1.49.1",
"sass": "^1.83.3",
"typescript": "5.6.3",
"vitest": "^2.1.8"
},
"resolutions": {
"typescript": "5.6.3"
}
}