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

66
node_modules/ofetch/package.json generated vendored Normal file
View File

@@ -0,0 +1,66 @@
{
"name": "ofetch",
"version": "1.0.0",
"description": "A better fetch API. Works on node, browser and workers.",
"repository": "unjs/ofetch",
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"node": {
"types": "./dist/node.d.ts",
"import": "./dist/node.mjs",
"require": "./cjs/node.cjs"
},
"default": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./cjs/index.cjs"
}
},
"./node": {
"types": "./dist/node.d.ts",
"import": "./dist/node.mjs",
"require": "./cjs/node.cjs"
}
},
"main": "./cjs/node.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"node.d.ts",
"cjs"
],
"scripts": {
"build": "unbuild",
"dev": "vitest",
"lint": "eslint --ext .ts .",
"prepack": "pnpm build",
"play": "jiti playground/index.ts",
"release": "pnpm test && standard-version && git push --follow-tags && pnpm publish",
"test": "pnpm lint && vitest run --coverage"
},
"dependencies": {
"destr": "^1.2.1",
"node-fetch-native": "^1.0.1",
"ufo": "^1.0.0"
},
"devDependencies": {
"@types/node": "^18.11.9",
"@vitest/coverage-c8": "^0.25.2",
"eslint": "^8.27.0",
"eslint-config-unjs": "^0.0.2",
"fetch-blob": "^3.2.0",
"formdata-polyfill": "^4.0.10",
"h3": "^1.0.1",
"jiti": "^1.16.0",
"listhen": "^1.0.0",
"standard-version": "^9.5.0",
"typescript": "^4.8.4",
"unbuild": "^0.9.4",
"vitest": "^0.25.2"
},
"packageManager": "pnpm@7.16.0"
}