Numerous Bug Fixes
Some checks failed
Automated Container Build / build-and-push (push) Failing after 8s
Some checks failed
Automated Container Build / build-and-push (push) Failing after 8s
This commit is contained in:
parent
02eefdac0e
commit
267d429122
959 changed files with 145571 additions and 221 deletions
54
frontend/node_modules/make-cancellable-promise/package.json
generated
vendored
Normal file
54
frontend/node_modules/make-cancellable-promise/package.json
generated
vendored
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
{
|
||||
"name": "make-cancellable-promise",
|
||||
"version": "2.0.0",
|
||||
"description": "Make any Promise cancellable.",
|
||||
"type": "module",
|
||||
"sideEffects": false,
|
||||
"main": "./dist/index.js",
|
||||
"source": "./src/index.ts",
|
||||
"types": "./dist/index.d.ts",
|
||||
"exports": {
|
||||
".": "./dist/index.js",
|
||||
"./*": "./*"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "tsc --project tsconfig.build.json",
|
||||
"clean": "rimraf dist",
|
||||
"format": "biome format",
|
||||
"lint": "biome lint",
|
||||
"prepack": "yarn clean && yarn build",
|
||||
"test": "yarn lint && yarn tsc && yarn format && yarn unit",
|
||||
"tsc": "tsc",
|
||||
"unit": "vitest"
|
||||
},
|
||||
"keywords": [
|
||||
"promise",
|
||||
"promise-cancelling"
|
||||
],
|
||||
"author": {
|
||||
"name": "Wojciech Maj",
|
||||
"email": "kontakt@wojtekmaj.pl"
|
||||
},
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "1.9.0",
|
||||
"husky": "^9.0.0",
|
||||
"rimraf": "^6.0.0",
|
||||
"typescript": "^5.5.2",
|
||||
"vitest": "^3.0.5"
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public",
|
||||
"provenance": true
|
||||
},
|
||||
"files": [
|
||||
"dist",
|
||||
"src"
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/wojtekmaj/make-cancellable-promise.git"
|
||||
},
|
||||
"funding": "https://github.com/wojtekmaj/make-cancellable-promise?sponsor=1",
|
||||
"packageManager": "yarn@4.3.1"
|
||||
}
|
||||
Reference in a new issue