forked from vueuse/head
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 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
80
81
82
83
{
"name": "@vueuse/head",
"packageManager": "[email protected]",
"version": "0.7.12",
"license": "MIT",
"description": "Document head manager for Vue 3. SSR ready.",
"keywords": [
"vue",
"head",
"document",
"ssr",
"meta"
],
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"play:vite": "vite examples/vite-ssr",
"build": "tsup src/index.ts --format esm,cjs --dts",
"prepublishOnly": "npm run build",
"test": "nuxi prepare examples/nuxt3 && vitest",
"test:e2e": "vitest tests/e2e",
"release": "kanpai"
},
"repository": {
"type": "git",
"url": "https://github.com/vueuse/head"
},
"author": {
"name": "EGOIST",
"url": "https://egoist.sh"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write"
]
},
"sideEffects": false,
"devDependencies": {
"@egoist/prettier-config": "^1.0.0",
"@nuxt/test-utils": "3.0.0-rc.10",
"@vitejs/plugin-vue": "^3.1.0",
"@vitejs/plugin-vue-jsx": "^2.0.1",
"@vue/compiler-sfc": "^3.2.39",
"@vue/server-renderer": "^3.2.39",
"cheerio": "1.0.0-rc.12",
"execa": "^6.1.0",
"get-port-please": "^2.6.1",
"jsdom": "^20.0.0",
"kanpai": "^0.11.0",
"lint-staged": "^13.0.3",
"mlly": "^0.5.14",
"nuxt": "3.0.0-rc.10",
"pathe": "^0.3.7",
"playwright": "^1.25.2",
"prettier": "^2.7.1",
"simple-git-hooks": "^2.8.0",
"tsup": "^6.2.3",
"typescript": "^4.8.3",
"vite": "^3.1.2",
"vitest": "^0.23.4",
"vue": "^3.2.39",
"vue-router": "^4.1.5"
},
"peerDependencies": {
"vue": ">=2.7 || >=3"
},
"dependencies": {
"@zhead/schema-vue": "^0.7.3"
},
"resolutions": {
"@vueuse/head": "link:."
}
}