Files
discord-clone/node_modules/@vueuse/head/package.json
2023-01-03 09:29:04 -06:00

96 lines
2.2 KiB
JSON

{
"name": "@vueuse/head",
"version": "1.0.22",
"packageManager": "pnpm@7.5.0",
"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",
"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.0.9",
"@unhead/schema": "^1.0.9",
"@unhead/ssr": "^1.0.9",
"@unhead/vue": "^1.0.9"
},
"devDependencies": {
"@antfu/eslint-config": "^0.33.1",
"@nuxt/kit": "3.0.0",
"@nuxt/test-utils": "3.0.0",
"@vitejs/plugin-vue": "^3.2.0",
"@vitejs/plugin-vue-jsx": "^2.1.1",
"@vue/compiler-sfc": "^3.2.45",
"@vue/server-renderer": "^3.2.45",
"cheerio": "1.0.0-rc.12",
"eslint": "^8.29.0",
"execa": "^6.1.0",
"get-port-please": "^2.6.1",
"jsdom": "^20.0.3",
"kanpai": "^0.11.0",
"lint-staged": "^13.1.0",
"mlly": "^1.0.0",
"nuxt": "^3.0.0",
"pathe": "^1.0.0",
"playwright": "^1.28.1",
"simple-git-hooks": "^2.8.1",
"typescript": "^4.9.3",
"unbuild": "^1.0.2",
"vite": "^3.2.5",
"vitest": "^0.25.5",
"vue": "^3.2.45",
"vue-router": "^4.1.6"
},
"resolutions": {
"@vueuse/head": "link:."
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{ts,vue,json,yml,tsx}": [
"eslint \"**/*.{ts,vue,json,yml,tsx}\" --fix"
]
}
}