feat:node-modules

This commit is contained in:
houjunxiang
2025-11-24 10:26:18 +08:00
parent 753766893b
commit 8a3e48d856
8825 changed files with 567399 additions and 1 deletions

21
node_modules/typed-function/LICENSE generated vendored Normal file
View File

@@ -0,0 +1,21 @@
The MIT License (MIT)
Copyright (c) 2014-2024 Jos de Jong
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

605
node_modules/typed-function/README.md generated vendored Normal file

File diff suppressed because it is too large Load Diff

1907
node_modules/typed-function/lib/esm/typed-function.mjs generated vendored Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

3
node_modules/typed-function/lib/umd/package.json generated vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"type": "commonjs"
}

1915
node_modules/typed-function/lib/umd/typed-function.js generated vendored Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

65
node_modules/typed-function/package.json generated vendored Normal file
View File

@@ -0,0 +1,65 @@
{
"name": "typed-function",
"version": "4.2.1",
"description": "Type checking for JavaScript functions",
"author": "Jos de Jong <wjosdejong@gmail.com> (https://github.com/josdejong)",
"contributors": [
"Glen Whitney (https://github.com/gwhitney)",
"Luke Gumbley (https://github.com/luke-gumbley)"
],
"homepage": "https://github.com/josdejong/typed-function",
"repository": {
"type": "git",
"url": "https://github.com/josdejong/typed-function.git"
},
"keywords": [
"typed",
"function",
"arguments",
"compose",
"types"
],
"type": "module",
"main": "lib/umd/typed-function.js",
"module": "lib/esm/typed-function.mjs",
"browser": "lib/umd/typed-function.js",
"scripts": {
"test": "mocha test --recursive",
"test:lib": "mocha test test-lib --recursive",
"build": "npm-run-all build:**",
"build:clean": "del-cli lib",
"build:esm": "babel src --out-dir lib/esm --out-file-extension .mjs --source-maps --config-file ./babel.config.json",
"build:umd": "rollup lib/esm/typed-function.mjs --format umd --name 'typed' --sourcemap --output.file lib/umd/typed-function.js && cpy tools/cjs/package.json lib/umd --flat",
"build-and-test": "npm run lint && npm run build && npm run test:lib",
"lint": "eslint --cache src/**/*.mjs test/**/*.mjs test-lib/**/*.mjs",
"format": "npm run lint -- --fix",
"coverage": "c8 --reporter=lcov --reporter=text-summary mocha test --recursive && echo \"\nCoverage report is available at ./coverage/lcov-report/index.html\"",
"prepublishOnly": "npm run build-and-test"
},
"engines": {
"node": ">= 18"
},
"devDependencies": {
"@babel/cli": "7.24.6",
"@babel/preset-env": "7.24.6",
"benchmark": "2.1.4",
"c8": "9.1.0",
"cpy-cli": "5.0.0",
"del-cli": "5.1.0",
"eslint": "8.56.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-promise": "6.2.0",
"mocha": "10.4.0",
"npm-run-all": "4.1.5",
"pad-right": "0.2.2",
"rollup": "4.18.0"
},
"files": [
"README.md",
"LICENSE.md",
"lib"
],
"license": "MIT"
}