Updated the project.

This commit is contained in:
Batuhan Berk Başoğlu 2024-06-03 15:44:25 -04:00
parent 5dfe9f128d
commit 7919556077
1550 changed files with 17063 additions and 40183 deletions

0
my-app/node_modules/hosted-git-info/LICENSE generated vendored Executable file → Normal file
View file

0
my-app/node_modules/hosted-git-info/README.md generated vendored Executable file → Normal file
View file

0
my-app/node_modules/hosted-git-info/lib/from-url.js generated vendored Executable file → Normal file
View file

2
my-app/node_modules/hosted-git-info/lib/hosts.js generated vendored Executable file → Normal file
View file

@ -199,7 +199,7 @@ hosts.sourcehut = {
`https://${domain}/${user}/${project}.git${maybeJoin('#', committish)}`,
tarballtemplate: ({ domain, user, project, committish }) =>
`https://${domain}/${user}/${project}/archive/${maybeEncode(committish) || 'HEAD'}.tar.gz`,
bugstemplate: ({ user, project }) => null,
bugstemplate: () => null,
extract: (url) => {
let [, user, project, aux] = url.pathname.split('/', 4)

0
my-app/node_modules/hosted-git-info/lib/index.js generated vendored Executable file → Normal file
View file

0
my-app/node_modules/hosted-git-info/lib/parse-url.js generated vendored Executable file → Normal file
View file

0
my-app/node_modules/hosted-git-info/node_modules/lru-cache/LICENSE generated vendored Executable file → Normal file
View file

0
my-app/node_modules/hosted-git-info/node_modules/lru-cache/README.md generated vendored Executable file → Normal file
View file

View file

View file

0
my-app/node_modules/hosted-git-info/node_modules/lru-cache/dist/commonjs/index.js generated vendored Executable file → Normal file
View file

View file

View file

0
my-app/node_modules/hosted-git-info/node_modules/lru-cache/dist/esm/index.d.ts generated vendored Executable file → Normal file
View file

0
my-app/node_modules/hosted-git-info/node_modules/lru-cache/dist/esm/index.d.ts.map generated vendored Executable file → Normal file
View file

0
my-app/node_modules/hosted-git-info/node_modules/lru-cache/dist/esm/index.js generated vendored Executable file → Normal file
View file

0
my-app/node_modules/hosted-git-info/node_modules/lru-cache/dist/esm/index.js.map generated vendored Executable file → Normal file
View file

0
my-app/node_modules/hosted-git-info/node_modules/lru-cache/dist/esm/package.json generated vendored Executable file → Normal file
View file

13
my-app/node_modules/hosted-git-info/node_modules/lru-cache/package.json generated vendored Executable file → Normal file
View file

@ -1,7 +1,7 @@
{
"name": "lru-cache",
"description": "A cache object that deletes the least-recently-used items.",
"version": "10.2.0",
"version": "10.2.2",
"author": "Isaac Z. Schlueter <i@izs.me>",
"keywords": [
"mru",
@ -11,8 +11,7 @@
"sideEffects": false,
"scripts": {
"build": "npm run prepare",
"prepare": "tshy",
"postprepare": "bash fixup.sh",
"prepare": "tshy && bash fixup.sh",
"pretest": "npm run prepare",
"presnap": "npm run prepare",
"test": "tap",
@ -35,8 +34,8 @@
".": "./src/index.ts",
"./min": {
"import": {
"types": "./dist/mjs/index.d.ts",
"default": "./dist/mjs/index.min.js"
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.min.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",
@ -105,8 +104,8 @@
},
"./min": {
"import": {
"types": "./dist/mjs/index.d.ts",
"default": "./dist/mjs/index.min.js"
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.min.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",

18
my-app/node_modules/hosted-git-info/package.json generated vendored Executable file → Normal file
View file

@ -1,11 +1,11 @@
{
"name": "hosted-git-info",
"version": "7.0.1",
"version": "7.0.2",
"description": "Provides metadata and conversions from repository urls for GitHub, Bitbucket and GitLab",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/npm/hosted-git-info.git"
"url": "git+https://github.com/npm/hosted-git-info.git"
},
"keywords": [
"git",
@ -24,7 +24,7 @@
"snap": "tap",
"test": "tap",
"test:coverage": "tap --coverage-report=html",
"lint": "eslint \"**/*.js\"",
"lint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\"",
"postlint": "template-oss-check",
"lintfix": "npm run lint -- --fix",
"template-oss-apply": "template-oss-apply --force"
@ -34,7 +34,7 @@
},
"devDependencies": {
"@npmcli/eslint-config": "^4.0.0",
"@npmcli/template-oss": "4.18.0",
"@npmcli/template-oss": "4.22.0",
"tap": "^16.0.1"
},
"files": [
@ -54,13 +54,7 @@
},
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
"version": "4.18.0",
"publish": "true",
"ciVersions": [
"16.14.0",
"16.x",
"18.0.0",
"18.x"
]
"version": "4.22.0",
"publish": "true"
}
}