-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
79 lines (79 loc) · 1.87 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
{
"name": "@vueuse/schema-org",
"type": "module",
"version": "2.2.0",
"packageManager": "[email protected]",
"description": "Vue Schema.org for Simple and Automated Google Rich Results for everyone",
"author": "Harlan Wilton <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/harlan-zw",
"homepage": "https://github.com/vueuse/schema-org#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vueuse/schema-org.git",
"path": "packages/schema-org"
},
"bugs": {
"url": "https://github.com/vueuse/schema-org/issues"
},
"keywords": [
"vue",
"vue3",
"plugin",
"seo",
"schema.org",
"seo"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"./runtime": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "unbuild .",
"stub": "unbuild . --stub",
"lint": "eslint . --fix",
"release": "bumpp package.json --commit --push --tag",
"test": "true",
"test:update": "true"
},
"peerDependencies": {
"@vueuse/head": ">=1.0.21",
"vue": ">=3.2.0"
},
"dependencies": {
"@unhead/schema-org-vue": "^0.6.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.39.7",
"@nuxt/test-utils": "3.6.1",
"@vitest/ui": "^0.32.4",
"bumpp": "^9.1.1",
"cheerio": "1.0.0-rc.12",
"eslint": "^8.44.0",
"jsdom": "^22.1.0",
"playwright": "^1.35.1",
"typescript": "^5.1.6",
"unbuild": "^1.2.1",
"unhead": "^1.1.30",
"utility-types": "^3.10.0",
"vitest": "^0.32.4"
}
}