-
-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.62 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.62 KB
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
117
118
119
120
121
{
"name": "@nuxtjs/robots",
"type": "module",
"version": "6.0.7",
"packageManager": "[email protected]",
"description": "Tame the robots crawling and indexing your Nuxt site with ease.",
"author": {
"name": "Harlan Wilton",
"email": "[email protected]",
"url": "https://harlanzw.com/"
},
"contributors": [
"Ricardo Gobbo de Souza <[email protected]>",
"Harlan Wilton <[email protected]>"
],
"license": "MIT",
"funding": "https://github.com/sponsors/harlan-zw",
"homepage": "https://nuxtseo.com/robots",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt-modules/robots.git"
},
"bugs": {
"url": "https://github.com/nuxt-modules/robots/issues"
},
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
},
"./util": "./dist/util.mjs",
"./content": "./dist/content.mjs"
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
"content": [
"dist/content"
],
"util": [
"dist/util"
]
}
},
"files": [
"dist"
],
"scripts": {
"lint": "eslint . --fix",
"client:build": "nuxt generate devtools",
"devtools": "nuxt dev devtools --port 3030",
"build": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxt-module-build build && npm run client:build",
"dev": "nuxt dev playground",
"prepare:fixtures": "nuxt prepare playground && nuxt prepare test/fixtures/basic && nuxt prepare test/fixtures/i18n && nuxt prepare test/fixtures/content-v3",
"dev:build": "nuxt build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxt-module-build build && nuxt prepare playground",
"release": "pnpm build && bumpp -x \"npx changelogen --output=CHANGELOG.md\"",
"prepack": "pnpm run build",
"test": "pnpm run prepare:fixtures && vitest",
"typecheck": "nuxt typecheck",
"test:attw": "attw --pack"
},
"peerDependencies": {
"zod": ">=3"
},
"peerDependenciesMeta": {
"zod": {
"optional": true
}
},
"dependencies": {
"@fingerprintjs/botd": "catalog:",
"@nuxt/kit": "catalog:",
"consola": "catalog:",
"defu": "catalog:",
"h3": "catalog:",
"nuxt-site-config": "catalog:",
"nuxtseo-shared": "catalog:",
"pathe": "catalog:",
"pkg-types": "catalog:",
"ufo": "catalog:"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@arethetypeswrong/cli": "catalog:dev",
"@headlessui/vue": "catalog:dev",
"@iconify-json/carbon": "catalog:dev",
"@iconify-json/logos": "catalog:dev",
"@iconify-json/ri": "catalog:dev",
"@iconify-json/tabler": "catalog:",
"@nuxt/content": "catalog:dev",
"@nuxt/devtools-kit": "catalog:",
"@nuxt/devtools-ui-kit": "catalog:",
"@nuxt/module-builder": "catalog:dev",
"@nuxt/test-utils": "catalog:dev",
"@nuxtjs/color-mode": "catalog:dev",
"@nuxtjs/i18n": "catalog:",
"@unocss/nuxt": "catalog:",
"@unocss/preset-icons": "catalog:",
"@unocss/preset-uno": "catalog:",
"@unocss/runtime": "catalog:",
"@vueuse/nuxt": "catalog:dev",
"better-sqlite3": "catalog:",
"bumpp": "catalog:",
"eslint": "catalog:",
"eslint-plugin-harlanzw": "catalog:",
"execa": "catalog:dev",
"firebase-functions": "catalog:",
"happy-dom": "catalog:",
"nuxt": "catalog:",
"nuxtseo-layer-devtools": "catalog:",
"playwright-core": "catalog:dev",
"sirv": "catalog:",
"std-env": "catalog:",
"typescript": "catalog:",
"unocss": "catalog:",
"vitest": "catalog:",
"vue": "catalog:",
"vue-router": "catalog:"
}
}