-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
92 lines (92 loc) · 2.06 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
{
"name": "@vueuse/head",
"version": "2.0.0",
"packageManager": "pnpm@8.7.5",
"description": "Document head manager for Vue 3. SSR ready.",
"author": {
"name": "EGOIST",
"url": "https://egoist.sh"
},
"maintainers": [
{
"name": "Harlan Wilton",
"url": "https://harlanzw.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vueuse/head"
},
"keywords": [
"vue",
"head",
"document",
"ssr",
"meta"
],
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"stub": "unbuild --stub",
"build": "unbuild",
"play:vite": "vite examples/vite-ssr",
"prepublishOnly": "npm run build",
"test": "nuxi prepare examples/nuxt3 && vitest",
"test:e2e": "vitest tests/e2e",
"release": "kanpai",
"lint": "eslint \"**/*.{ts,vue,json,yml,tsx}\" --fix"
},
"peerDependencies": {
"vue": ">=2.7 || >=3"
},
"dependencies": {
"@unhead/dom": "^1.7.0",
"@unhead/schema": "^1.7.0",
"@unhead/ssr": "^1.7.0",
"@unhead/vue": "^1.7.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.41.3",
"@nuxt/kit": "3.7.2",
"@nuxt/test-utils": "3.7.2",
"@vitejs/plugin-vue": "^4.3.4",
"@vitejs/plugin-vue-jsx": "^3.0.2",
"@vue/compiler-sfc": "^3.3.4",
"@vue/server-renderer": "^3.3.4",
"cheerio": "1.0.0-rc.12",
"eslint": "^8.49.0",
"execa": "^8.0.1",
"get-port-please": "^3.1.1",
"jsdom": "^22.1.0",
"kanpai": "^0.11.0",
"mlly": "^1.4.2",
"nuxt": "^3.7.2",
"pathe": "^1.1.1",
"playwright": "^1.37.1",
"typescript": "^5.2.2",
"unbuild": "^2.0.0",
"vite": "^4.4.9",
"vitest": "^0.34.4",
"vue": "^3.3.4",
"vue-router": "^4.2.4"
},
"resolutions": {
"@vueuse/head": "link:."
}
}