initial commit

This commit is contained in:
Zoe
2023-01-03 09:29:04 -06:00
commit 7851137d88
12889 changed files with 2557443 additions and 0 deletions

45
node_modules/@unhead/schema/package.json generated vendored Normal file
View File

@@ -0,0 +1,45 @@
{
"name": "@unhead/schema",
"type": "module",
"version": "1.0.14",
"packageManager": "pnpm@7.19.0",
"author": "Harlan Wilton <harlan@harlanzw.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/harlan-zw",
"homepage": "https://github.com/harlan-zw/unhead#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/harlan-zw/unhead.git",
"directory": "packages/schema"
},
"bugs": {
"url": "https://github.com/harlan-zw/unhead/issues"
},
"keywords": [
"head",
"meta tags",
"types"
],
"sideEffects": false,
"exports": {
".": {
"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"
],
"dependencies": {
"@zhead/schema": "^1.0.9",
"hookable": "^5.4.2"
},
"scripts": {
"build": "unbuild .",
"stub": "unbuild . --stub"
}
}