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

16
node_modules/@zhead/schema/README.md generated vendored Normal file
View File

@@ -0,0 +1,16 @@
# `@zhead/schema`
Typescript definitions for document `<head>`.
## Installation
```bash
npm install --save-dev @zhead/schema
# Using yarn
yarn add --dev @zhead/schema
```
## Types
See [head.ts](./src/syncHead.ts) for the full list of types.

2
node_modules/@zhead/schema/dist/index.cjs generated vendored Normal file
View File

@@ -0,0 +1,2 @@
'use strict';

1772
node_modules/@zhead/schema/dist/index.d.ts generated vendored Normal file

File diff suppressed because it is too large Load Diff

1
node_modules/@zhead/schema/dist/index.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@

40
node_modules/@zhead/schema/package.json generated vendored Normal file
View File

@@ -0,0 +1,40 @@
{
"name": "@zhead/schema",
"version": "1.0.9",
"packageManager": "pnpm@7.8.0",
"author": "Harlan Wilton <harlan@harlanzw.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/harlan-zw",
"homepage": "https://github.com/harlan-zw/zhead#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/harlan-zw/zhead.git",
"directory": "packages/schema"
},
"bugs": {
"url": "https://github.com/harlan-zw/zhead/issues"
},
"keywords": [
"head",
"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"
],
"scripts": {
"build": "unbuild .",
"stub": "unbuild . --stub",
"export:sizes": "npx export-size . -r"
}
}