-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
88 lines (88 loc) · 2.38 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-schema-org",
"type": "module",
"version": "4.0.4",
"packageManager": "[email protected]",
"description": "The quickest and easiest way to build Schema.org graphs for Nuxt.",
"author": "Harlan Wilton <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/harlan-zw",
"homepage": "https://nuxtseo.com/schema-org",
"repository": {
"type": "git",
"url": "git+https://github.com/harlan-zw/nuxt-schema-org.git"
},
"bugs": {
"url": "https://github.com/harlan-zw/nuxt-schema-org/issues"
},
"keywords": [
"schema-org",
"nuxt",
"@nuxt-schema-org",
"nuxt-module",
"nuxt3"
],
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
},
"./schema": {
"types": "./dist/schema.d.ts",
"import": "./dist/schema.mjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist",
"schema.d.ts"
],
"scripts": {
"lint": "eslint . --fix",
"client:build": "nuxi generate client",
"client:dev": "nuxi dev client --port 3030",
"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 && nuxi prepare playground && nuxi prepare client",
"release": "pnpm build && bumpp && pnpm -r publish",
"typecheck": "tsc --noEmit ",
"test": "vitest"
},
"dependencies": {
"@nuxt/devtools-kit": "^1.6.3",
"@nuxt/kit": "^3.14.1592",
"@unhead/schema-org": "^1.11.14",
"nuxt-site-config": "^3.0.6",
"pathe": "^1.1.2",
"pkg-types": "^1.2.1",
"sirv": "^3.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.11.2",
"@nuxt/content": "^2.13.4",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.14.1592",
"@nuxt/test-utils": "^3.15.1",
"@nuxt/ui": "^2.20.0",
"@nuxtjs/i18n": "^9.1.1",
"@nuxtjs/robots": "^5.0.1",
"bumpp": "^9.9.0",
"cheerio": "^1.0.0",
"eslint": "^9.16.0",
"nuxt": "^3.14.1592",
"typescript": "5.6.3",
"vitest": "^2.1.8"
},
"resolutions": {
"typescript": "5.6.3"
},
"build": {
"externals": [
"@unhead/schema",
"@unhead/schema-org/vue"
]
}
}