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

42
node_modules/destr/package.json generated vendored Normal file
View File

@@ -0,0 +1,42 @@
{
"name": "destr",
"version": "1.2.2",
"description": "A faster, secure and convenient alternative for JSON.parse",
"repository": "unjs/destr",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@hapi/bourne": "^3.0.0",
"@vitest/coverage-c8": "^0.25.3",
"benchmark": "^2.1.4",
"eslint": "^8.29.0",
"eslint-config-unjs": "^0.0.2",
"secure-json-parse": "^2.6.0",
"standard-version": "^9.5.0",
"typescript": "^4.9.3",
"unbuild": "^1.0.1",
"vitest": "^0.25.3"
},
"packageManager": "pnpm@7.18.0",
"scripts": {
"bench": "pnpm build && node ./bench.cjs",
"build": "unbuild",
"dev": "vitest dev",
"lint": "eslint --ext .ts .",
"release": "pnpm test && pnpm build && standard-version && git push --follow-tags && pnpm publish",
"test": "pnpm lint && vitest run --coverage"
}
}