-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
111 lines (111 loc) · 3.13 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
{
"name": "@nuxtjs/robots",
"type": "module",
"version": "5.1.0",
"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.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
},
"./util": {
"types": "./dist/runtime/util.d.ts",
"import": "./dist/runtime/util.js"
},
"./dist/runtime/util": {
"types": "./dist/runtime/util.d.ts",
"import": "./dist/runtime/util.js"
}
},
"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:build": "nuxi build .playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxt-module-build build && nuxi prepare .playground",
"release": "pnpm build && bumpp && pnpm -r publish",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@nuxt/devtools-kit": "^1.6.4",
"@nuxt/kit": "^3.14.1592",
"consola": "^3.3.0",
"defu": "^6.1.4",
"nuxt-site-config": "^3.0.6",
"pathe": "^1.1.2",
"pkg-types": "^1.2.1",
"sirv": "^3.0.0",
"std-env": "^3.8.0",
"ufo": "^1.5.4"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.0",
"@headlessui/vue": "^1.7.23",
"@iconify-json/carbon": "^1.2.5",
"@iconify-json/logos": "^1.2.4",
"@iconify-json/ri": "^1.2.5",
"@iconify-json/tabler": "^1.2.13",
"@nuxt/content": "^2.13.4",
"@nuxt/devtools-ui-kit": "^1.6.4",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/test-utils": "^3.15.1",
"@nuxtjs/color-mode": "^3.5.2",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@nuxtjs/i18n": "^9.1.1",
"@unocss/nuxt": "^0.65.2",
"@unocss/preset-icons": "^0.65.2",
"@unocss/preset-uno": "^0.65.2",
"@unocss/runtime": "^0.65.2",
"@vueuse/nuxt": "^12.1.0",
"bumpp": "^9.9.2",
"eslint": "^9.17.0",
"execa": "^9.5.2",
"firebase-functions": "^6.2.0",
"nuxt": "^3.14.1592",
"typescript": "5.6.3",
"unocss": "^0.65.2",
"vitest": "^2.1.8",
"vue": "3.5.13",
"vue-router": "^4.5.0"
},
"resolutions": {
"@nuxt/schema": "3.14.1592",
"nuxt": "^3.14.1592",
"typescript": "5.6.3"
},
"build": {
"externals": [
"h3",
"consola"
]
}
}