├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── ci.yaml │ └── release.yaml ├── .gitignore ├── .ignore ├── .npmrc ├── LICENSE ├── Makefile ├── README.md ├── eslint.config.ts ├── fixtures ├── actions.yaml ├── dual │ ├── package.json │ └── pyproject.toml ├── github │ ├── updates-commits.json │ └── updates-tags.json ├── go │ ├── go.mod │ └── go.sum ├── npm-1500 │ └── package.json ├── npm-empty │ └── package.json ├── npm-test │ └── package.json ├── npm │ ├── @babel%2fpreset-env.json │ ├── eslint-plugin-storybook.json │ ├── gulp-sourcemaps.json │ ├── html-webpack-plugin.json │ ├── jpeg-buffer-orientation.json │ ├── noty.json │ ├── npm.json │ ├── preset-env │ ├── prismjs.json │ ├── react.json │ ├── styled-components.json │ ├── svgstore.json │ ├── typescript.json │ └── updates.json ├── poetry │ └── pyproject.toml ├── pypi │ ├── PyYAML.json │ ├── djlint.json │ ├── ty.json │ ├── types-paramiko.json │ └── types-requests.json └── uv │ └── pyproject.toml ├── index.test.ts ├── index.ts ├── package.json ├── screenshot.png ├── tsconfig.json ├── tsdown.config.ts ├── utils.test.ts ├── utils.ts └── vitest.config.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/.gitignore -------------------------------------------------------------------------------- /.ignore: -------------------------------------------------------------------------------- 1 | fixtures 2 | dist 3 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/.npmrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/eslint.config.ts -------------------------------------------------------------------------------- /fixtures/actions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/fixtures/actions.yaml -------------------------------------------------------------------------------- /fixtures/dual/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/fixtures/dual/package.json -------------------------------------------------------------------------------- /fixtures/dual/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/fixtures/dual/pyproject.toml -------------------------------------------------------------------------------- /fixtures/github/updates-commits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/fixtures/github/updates-commits.json -------------------------------------------------------------------------------- /fixtures/github/updates-tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/fixtures/github/updates-tags.json -------------------------------------------------------------------------------- /fixtures/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/fixtures/go/go.mod -------------------------------------------------------------------------------- /fixtures/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/fixtures/go/go.sum -------------------------------------------------------------------------------- /fixtures/npm-1500/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/fixtures/npm-1500/package.json -------------------------------------------------------------------------------- /fixtures/npm-empty/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /fixtures/npm-test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/fixtures/npm-test/package.json -------------------------------------------------------------------------------- /fixtures/npm/@babel%2fpreset-env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/fixtures/npm/@babel%2fpreset-env.json -------------------------------------------------------------------------------- /fixtures/npm/eslint-plugin-storybook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/fixtures/npm/eslint-plugin-storybook.json -------------------------------------------------------------------------------- /fixtures/npm/gulp-sourcemaps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/fixtures/npm/gulp-sourcemaps.json -------------------------------------------------------------------------------- /fixtures/npm/html-webpack-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/fixtures/npm/html-webpack-plugin.json -------------------------------------------------------------------------------- /fixtures/npm/jpeg-buffer-orientation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/fixtures/npm/jpeg-buffer-orientation.json -------------------------------------------------------------------------------- /fixtures/npm/noty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/fixtures/npm/noty.json -------------------------------------------------------------------------------- /fixtures/npm/npm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/fixtures/npm/npm.json -------------------------------------------------------------------------------- /fixtures/npm/preset-env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/fixtures/npm/preset-env -------------------------------------------------------------------------------- /fixtures/npm/prismjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/fixtures/npm/prismjs.json -------------------------------------------------------------------------------- /fixtures/npm/react.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/fixtures/npm/react.json -------------------------------------------------------------------------------- /fixtures/npm/styled-components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/fixtures/npm/styled-components.json -------------------------------------------------------------------------------- /fixtures/npm/svgstore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/fixtures/npm/svgstore.json -------------------------------------------------------------------------------- /fixtures/npm/typescript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/fixtures/npm/typescript.json -------------------------------------------------------------------------------- /fixtures/npm/updates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/fixtures/npm/updates.json -------------------------------------------------------------------------------- /fixtures/poetry/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/fixtures/poetry/pyproject.toml -------------------------------------------------------------------------------- /fixtures/pypi/PyYAML.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/fixtures/pypi/PyYAML.json -------------------------------------------------------------------------------- /fixtures/pypi/djlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/fixtures/pypi/djlint.json -------------------------------------------------------------------------------- /fixtures/pypi/ty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/fixtures/pypi/ty.json -------------------------------------------------------------------------------- /fixtures/pypi/types-paramiko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/fixtures/pypi/types-paramiko.json -------------------------------------------------------------------------------- /fixtures/pypi/types-requests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/fixtures/pypi/types-requests.json -------------------------------------------------------------------------------- /fixtures/uv/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/fixtures/uv/pyproject.toml -------------------------------------------------------------------------------- /index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/index.test.ts -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/screenshot.png -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsdown.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/tsdown.config.ts -------------------------------------------------------------------------------- /utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/utils.test.ts -------------------------------------------------------------------------------- /utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/utils.ts -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silverwind/updates/HEAD/vitest.config.ts --------------------------------------------------------------------------------