v1.0 with SW PWA enabled
This commit is contained in:
20
frontend/node_modules/ts-api-utils/LICENSE.md
generated
vendored
Normal file
20
frontend/node_modules/ts-api-utils/LICENSE.md
generated
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
# MIT License
|
||||
|
||||
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.
|
||||
40
frontend/node_modules/ts-api-utils/README.md
generated
vendored
Normal file
40
frontend/node_modules/ts-api-utils/README.md
generated
vendored
Normal file
@ -0,0 +1,40 @@
|
||||
<h1 align="center">TypeScript API Utils</h1>
|
||||
|
||||
<p align="center">
|
||||
Utility functions for working with TypeScript's API.
|
||||
Successor to the wonderful tsutils.
|
||||
🛠️️
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<a href="https://github.com/JoshuaKGoldberg/ts-api-utils/blob/main/.github/CODE_OF_CONDUCT.md" target="_blank"><img alt="🤝 Code of Conduct: Kept" src="https://img.shields.io/badge/%F0%9F%A4%9D_code_of_conduct-kept-21bb42" /></a>
|
||||
<a href="https://codecov.io/gh/JoshuaKGoldberg/ts-api-utils" target="_blank"><img alt="🧪 Coverage" src="https://img.shields.io/codecov/c/github/JoshuaKGoldberg/ts-api-utils?label=%F0%9F%A7%AA%20coverage" /></a>
|
||||
<a href="#" target="_blank"><img alt="📚 Documentation Coverage" src="https://raw.githubusercontent.com/JoshuaKGoldberg/ts-api-utils/refs/heads/main/docs/coverage.svg" /></a>
|
||||
<a href="https://github.com/JoshuaKGoldberg/ts-api-utils/blob/main/LICENSE.md" target="_blank"><img alt="📝 License: MIT" src="https://img.shields.io/badge/%F0%9F%93%9D_license-MIT-21bb42.svg"></a>
|
||||
<a href="http://npmjs.com/package/ts-api-utils"><img alt="📦 npm version" src="https://img.shields.io/npm/v/ts-api-utils?color=21bb42&label=%F0%9F%93%A6%20npm" /></a>
|
||||
<img alt="💪 TypeScript: Strict" src="https://img.shields.io/badge/%F0%9F%92%AA_typescript-strict-21bb42.svg" />
|
||||
</p>
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
npm i ts-api-utils
|
||||
```
|
||||
|
||||
```ts
|
||||
import * as tsutils from "ts-api-utils";
|
||||
|
||||
tsutils.forEachToken(/* ... */);
|
||||
```
|
||||
|
||||
### API
|
||||
|
||||
`ts-api-utils` provides many utility functions.
|
||||
Check out our API docs for details:
|
||||
|
||||
📝 [ts-api-utils API docs](https://joshuakgoldberg.github.io/ts-api-utils).
|
||||
|
||||
## Development
|
||||
|
||||
See [`.github/CONTRIBUTING.md`](./.github/CONTRIBUTING.md).
|
||||
Thanks! 💖
|
||||
2301
frontend/node_modules/ts-api-utils/lib/index.cjs
generated
vendored
Normal file
2301
frontend/node_modules/ts-api-utils/lib/index.cjs
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
3050
frontend/node_modules/ts-api-utils/lib/index.d.cts
generated
vendored
Normal file
3050
frontend/node_modules/ts-api-utils/lib/index.d.cts
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
3050
frontend/node_modules/ts-api-utils/lib/index.d.ts
generated
vendored
Normal file
3050
frontend/node_modules/ts-api-utils/lib/index.d.ts
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
2100
frontend/node_modules/ts-api-utils/lib/index.js
generated
vendored
Normal file
2100
frontend/node_modules/ts-api-utils/lib/index.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
99
frontend/node_modules/ts-api-utils/package.json
generated
vendored
Normal file
99
frontend/node_modules/ts-api-utils/package.json
generated
vendored
Normal file
@ -0,0 +1,99 @@
|
||||
{
|
||||
"name": "ts-api-utils",
|
||||
"version": "2.3.0",
|
||||
"description": "Utility functions for working with TypeScript's API. Successor to the wonderful tsutils. 🛠️️",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/JoshuaKGoldberg/ts-api-utils"
|
||||
},
|
||||
"license": "MIT",
|
||||
"author": {
|
||||
"name": "JoshuaKGoldberg",
|
||||
"email": "npm@joshuakgoldberg.com"
|
||||
},
|
||||
"type": "module",
|
||||
"exports": {
|
||||
".": {
|
||||
"types": {
|
||||
"import": "./lib/index.d.ts",
|
||||
"require": "./lib/index.d.cts"
|
||||
},
|
||||
"import": "./lib/index.js",
|
||||
"require": "./lib/index.cjs"
|
||||
}
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"files": [
|
||||
"lib/",
|
||||
"package.json",
|
||||
"LICENSE.md",
|
||||
"README.md"
|
||||
],
|
||||
"lint-staged": {
|
||||
"*": "prettier --ignore-unknown --write"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
|
||||
"@eslint/js": "^9.19.0",
|
||||
"@phenomnomnominal/tsquery": "^6.1.3",
|
||||
"@release-it/conventional-changelog": "^10.0.0",
|
||||
"@types/eslint-plugin-markdown": "^2.0.2",
|
||||
"@types/node": "^18.19.74",
|
||||
"@typescript/vfs": "^1.6.0",
|
||||
"@vitest/coverage-v8": "^3.0.0",
|
||||
"@vitest/eslint-plugin": "^1.1.25",
|
||||
"console-fail-test": "^0.5.0",
|
||||
"cspell": "^8.17.3",
|
||||
"eslint": "^9.19.0",
|
||||
"eslint-plugin-jsdoc": "^50.6.3",
|
||||
"eslint-plugin-jsonc": "^2.19.1",
|
||||
"eslint-plugin-markdown": "^5.1.0",
|
||||
"eslint-plugin-n": "^17.15.1",
|
||||
"eslint-plugin-package-json": "^0.19.0",
|
||||
"eslint-plugin-perfectionist": "^4.7.0",
|
||||
"eslint-plugin-regexp": "^2.7.0",
|
||||
"eslint-plugin-yml": "^1.16.0",
|
||||
"husky": "^9.1.7",
|
||||
"jsonc-eslint-parser": "^2.4.0",
|
||||
"knip": "^5.46.0",
|
||||
"lint-staged": "^15.4.3",
|
||||
"markdownlint": "^0.37.4",
|
||||
"markdownlint-cli": "^0.44.0",
|
||||
"prettier": "^3.4.2",
|
||||
"prettier-plugin-curly": "^0.3.1",
|
||||
"prettier-plugin-packagejson": "^2.5.8",
|
||||
"release-it": "^18.1.2",
|
||||
"sentences-per-line": "^0.3.0",
|
||||
"should-semantic-release": "^0.3.0",
|
||||
"tsup": "^8.3.6",
|
||||
"typedoc": "^0.28.0",
|
||||
"typedoc-plugin-coverage": "^3.4.1",
|
||||
"typedoc-plugin-custom-validation": "^2.0.2",
|
||||
"typedoc-plugin-konamimojisplosion": "^0.0.2",
|
||||
"typedoc-plugin-mdn-links": "^5.0.0",
|
||||
"typescript": "^5.7.3",
|
||||
"typescript-eslint": "^8.22.0",
|
||||
"vitest": "^3.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"typescript": ">=4.8.4"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.12"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "tsup src/index.ts && cp lib/index.d.ts lib/index.d.cts",
|
||||
"docs": "typedoc",
|
||||
"docs:serve": "npx --yes http-server docs/generated",
|
||||
"format": "prettier \"**/*\" --ignore-unknown",
|
||||
"lint": "eslint . --max-warnings 0",
|
||||
"lint:docs": "typedoc --validation --treatValidationWarningsAsErrors",
|
||||
"lint:knip": "knip",
|
||||
"lint:md": "markdownlint \"**/*.md\" \".github/**/*.md\" --rules sentences-per-line",
|
||||
"lint:packages": "pnpm dedupe --check",
|
||||
"lint:spelling": "cspell \"**\" \".github/**/*\"",
|
||||
"should-semantic-release": "should-semantic-release --verbose",
|
||||
"test": "vitest",
|
||||
"tsc": "tsc"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user