├── .editorconfig ├── .eslintrc.json ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── build_test_publish.yml │ ├── codeql-analysis.yml │ ├── codeql.yml │ └── gitlab_mirror.yml ├── .gitignore ├── .prettierignore ├── .yarn └── releases │ └── yarn-4.9.2.cjs ├── .yarnrc.yml ├── LICENSE ├── README.md ├── SECURITY.md ├── bin └── publish.sh ├── lefthook.yml ├── package.json ├── schemas ├── BizTalkServerApplicationSchema │ ├── README.md │ ├── index.d.ts │ └── package.json ├── accelerator │ ├── README.md │ ├── index.d.ts │ └── package.json ├── agripparc-1.2 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── agripparc-1.3 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── agripparc-1.4 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── aiproj-1.0 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── aiproj-1.1 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── aiproj │ ├── README.md │ ├── index.d.ts │ └── package.json ├── airlock-microgateway-3.0 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── airlock-microgateway-3.1 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── airlock-microgateway-3.2 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── all-contributors │ ├── README.md │ ├── index.d.ts │ └── package.json ├── ansible-stable-2.0 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── ansible-stable-2.1 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── ansible-stable-2.2 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── ansible-stable-2.3 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── ansible-stable-2.4 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── ansible-stable-2.5 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── ansible-stable-2.6 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── ansible-stable-2.7 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── anywork-ac-1.0 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── anywork-ac-1.1 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── apibuilder │ ├── README.md │ ├── index.d.ts │ └── package.json ├── apple-app-site-association │ ├── README.md │ ├── index.d.ts │ └── package.json ├── appsettings │ ├── README.md │ ├── index.d.ts │ └── package.json ├── appsscript │ ├── README.md │ ├── index.d.ts │ └── package.json ├── appveyor │ ├── README.md │ ├── index.d.ts │ └── package.json ├── artifacthub-repo │ ├── README.md │ ├── index.d.ts │ └── package.json ├── asconfig-schema │ ├── README.md │ ├── index.d.ts │ └── package.json ├── asmdef │ ├── README.md │ ├── index.d.ts │ └── package.json ├── ava │ ├── README.md │ ├── index.d.ts │ └── package.json ├── avro-avsc │ ├── README.md │ ├── index.d.ts │ └── package.json ├── azure-deviceupdate-import-manifest-4.0 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── azure-deviceupdate-import-manifest-5.0 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── azure-deviceupdate-manifest-definitions-4.0 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── azure-deviceupdate-manifest-definitions-5.0 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── azure-deviceupdate-update-manifest-4 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── azure-deviceupdate-update-manifest-5 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── azure-iot-edge-deployment-1.0 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── azure-iot-edge-deployment-2.0 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── azure-iot-edge-deployment-template-1.0 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── azure-iot-edge-deployment-template-2.0 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── azure-iot-edge-deployment-template-3.0 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── azure-iot-edge-deployment-template-4.0 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── azure-iot-edgeagent-deployment-1.0 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── azure-iot-edgeagent-deployment-1.1 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── azure-iot-edgehub-deployment-1.0 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── azure-iot-edgehub-deployment-1.1 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── azure-iot-edgehub-deployment-1.2 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── babelrc │ ├── README.md │ ├── index.d.ts │ └── package.json ├── backportrc │ ├── README.md │ ├── index.d.ts │ └── package.json ├── bamboo-spec │ ├── README.md │ ├── index.d.ts │ └── package.json ├── band-manifest │ ├── README.md │ ├── index.d.ts │ └── package.json ├── base-04 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── base │ ├── README.md │ ├── index.d.ts │ └── package.json ├── behat │ ├── README.md │ ├── index.d.ts │ └── package.json ├── bettercodehub │ ├── README.md │ ├── index.d.ts │ └── package.json ├── bigquery-table │ ├── README.md │ ├── index.d.ts │ └── package.json ├── block │ ├── README.md │ ├── index.d.ts │ └── package.json ├── bootstraprc │ ├── README.md │ ├── index.d.ts │ └── package.json ├── bower │ ├── README.md │ ├── index.d.ts │ └── package.json ├── bowerrc │ ├── README.md │ ├── index.d.ts │ └── package.json ├── bozr │ ├── README.md │ ├── index.d.ts │ └── package.json ├── bukkit-plugin │ ├── README.md │ ├── index.d.ts │ └── package.json ├── bundleconfig │ ├── README.md │ ├── index.d.ts │ └── package.json ├── bungee-plugin │ ├── README.md │ ├── index.d.ts │ └── package.json ├── bxci.schema-1.0.1 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── bxci.schema-1.0 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── bxci.schema-2.0.0 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── bxci.schema-2.x │ ├── README.md │ ├── index.d.ts │ └── package.json ├── cdk │ ├── README.md │ ├── index.d.ts │ └── package.json ├── cheatsheets │ ├── README.md │ ├── index.d.ts │ └── package.json ├── chrome-manifest │ ├── README.md │ ├── index.d.ts │ └── package.json ├── chutzpah │ ├── README.md │ ├── index.d.ts │ └── package.json ├── circleciconfig │ ├── README.md │ ├── index.d.ts │ └── package.json ├── cirrus │ ├── README.md │ ├── index.d.ts │ └── package.json ├── clang-format │ ├── README.md │ ├── index.d.ts │ └── package.json ├── clasp │ ├── README.md │ ├── index.d.ts │ └── package.json ├── cloud-sdk-pipeline-config-schema │ ├── README.md │ ├── index.d.ts │ └── package.json ├── cloudbuild │ ├── README.md │ ├── index.d.ts │ └── package.json ├── codecov │ ├── README.md │ ├── index.d.ts │ └── package.json ├── coffeelint │ ├── README.md │ ├── index.d.ts │ └── package.json ├── comet │ ├── README.md │ ├── index.d.ts │ └── package.json ├── commands │ ├── README.md │ ├── index.d.ts │ └── package.json ├── compile-commands │ ├── README.md │ ├── index.d.ts │ └── package.json ├── compilerconfig │ ├── README.md │ ├── index.d.ts │ └── package.json ├── compilerdefaults │ ├── README.md │ ├── index.d.ts │ └── package.json ├── component │ ├── README.md │ ├── index.d.ts │ └── package.json ├── composer │ ├── README.md │ ├── index.d.ts │ └── package.json ├── config │ ├── README.md │ ├── index.d.ts │ └── package.json ├── container-structure-test │ ├── README.md │ ├── index.d.ts │ └── package.json ├── content-security-policy-report-2 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── contribute │ ├── README.md │ ├── index.d.ts │ └── package.json ├── cosmos-config │ ├── README.md │ ├── index.d.ts │ └── package.json ├── creatomic │ ├── README.md │ ├── index.d.ts │ └── package.json ├── cryproj.52.schema │ ├── README.md │ ├── index.d.ts │ └── package.json ├── cryproj.53.schema │ ├── README.md │ ├── index.d.ts │ └── package.json ├── cryproj.54.schema │ ├── README.md │ ├── index.d.ts │ └── package.json ├── cryproj.55.schema │ ├── README.md │ ├── index.d.ts │ └── package.json ├── cryproj.dev.schema │ ├── README.md │ ├── index.d.ts │ └── package.json ├── cryproj │ ├── README.md │ ├── index.d.ts │ └── package.json ├── csr │ ├── README.md │ ├── index.d.ts │ └── package.json ├── csscomb │ ├── README.md │ ├── index.d.ts │ └── package.json ├── csslintrc │ ├── README.md │ ├── index.d.ts │ └── package.json ├── datalogic-scan2deploy-android │ ├── README.md │ ├── index.d.ts │ └── package.json ├── datalogic-scan2deploy-ce │ ├── README.md │ ├── index.d.ts │ └── package.json ├── debugsettings │ ├── README.md │ ├── index.d.ts │ └── package.json ├── dein │ ├── README.md │ ├── index.d.ts │ └── package.json ├── dependabot-2.0 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── dependabot │ ├── README.md │ ├── index.d.ts │ └── package.json ├── docfx │ ├── README.md │ ├── index.d.ts │ └── package.json ├── dotnetcli.host │ ├── README.md │ ├── index.d.ts │ └── package.json ├── drone │ ├── README.md │ ├── index.d.ts │ └── package.json ├── drush.site.yml │ ├── README.md │ ├── index.d.ts │ └── package.json ├── dss-2.0.0 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── electron-builder │ ├── README.md │ ├── index.d.ts │ └── package.json ├── embrace-config-schema-1.0.0 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── epr-manifest │ ├── README.md │ ├── index.d.ts │ └── package.json ├── eslintrc │ ├── README.md │ ├── index.d.ts │ └── package.json ├── esquio │ ├── README.md │ ├── index.d.ts │ └── package.json ├── expo-37.0.0 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── fabric.mod │ ├── README.md │ ├── index.d.ts │ └── package.json ├── fantomas │ ├── README.md │ ├── index.d.ts │ └── package.json ├── feed │ ├── README.md │ ├── index.d.ts │ └── package.json ├── fly │ ├── README.md │ ├── index.d.ts │ └── package.json ├── foundryvtt-manifest │ ├── README.md │ ├── index.d.ts │ └── package.json ├── foxx-manifest │ ├── README.md │ ├── index.d.ts │ └── package.json ├── geojson │ ├── README.md │ ├── index.d.ts │ └── package.json ├── github-action │ ├── README.md │ ├── index.d.ts │ └── package.json ├── github-workflow │ ├── README.md │ ├── index.d.ts │ └── package.json ├── gitlab-ci │ ├── README.md │ ├── index.d.ts │ └── package.json ├── global │ ├── README.md │ ├── index.d.ts │ └── package.json ├── golangci-lint │ ├── README.md │ ├── index.d.ts │ └── package.json ├── grafana-dashboard-5.x │ ├── README.md │ ├── index.d.ts │ └── package.json ├── graphql-mesh-0.0.16 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── grunt-clean-task │ ├── README.md │ ├── index.d.ts │ └── package.json ├── grunt-copy-task │ ├── README.md │ ├── index.d.ts │ └── package.json ├── grunt-cssmin-task │ ├── README.md │ ├── index.d.ts │ └── package.json ├── grunt-jshint-task │ ├── README.md │ ├── index.d.ts │ └── package.json ├── grunt-task │ ├── README.md │ ├── index.d.ts │ └── package.json ├── grunt-watch-task │ ├── README.md │ ├── index.d.ts │ └── package.json ├── hadolint │ ├── README.md │ ├── index.d.ts │ └── package.json ├── haxelib │ ├── README.md │ ├── index.d.ts │ └── package.json ├── hemtt-0.6.2 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── host-meta │ ├── README.md │ ├── index.d.ts │ └── package.json ├── host │ ├── README.md │ ├── index.d.ts │ └── package.json ├── httpmockrc │ ├── README.md │ ├── index.d.ts │ └── package.json ├── husky │ ├── README.md │ ├── index.d.ts │ └── package.json ├── huskyrc │ ├── README.md │ ├── index.d.ts │ └── package.json ├── hws-config │ ├── README.md │ ├── index.d.ts │ └── package.json ├── imageoptimizer │ ├── README.md │ ├── index.d.ts │ └── package.json ├── install │ ├── README.md │ ├── index.d.ts │ └── package.json ├── jasonette │ ├── README.md │ ├── index.d.ts │ └── package.json ├── jdt │ ├── README.md │ ├── index.d.ts │ └── package.json ├── jekyll │ ├── README.md │ ├── index.d.ts │ └── package.json ├── jsbeautifyrc-nested │ ├── README.md │ ├── index.d.ts │ └── package.json ├── jsbeautifyrc │ ├── README.md │ ├── index.d.ts │ └── package.json ├── jsconfig │ ├── README.md │ ├── index.d.ts │ └── package.json ├── jscsrc │ ├── README.md │ ├── index.d.ts │ └── package.json ├── jsdoc-1.0.0 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── jshintrc │ ├── README.md │ ├── index.d.ts │ └── package.json ├── jsinspectrc │ ├── README.md │ ├── index.d.ts │ └── package.json ├── json-api-1.0 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── json-patch │ ├── README.md │ ├── index.d.ts │ └── package.json ├── json-schemas.lock ├── jsonld │ ├── README.md │ ├── index.d.ts │ └── package.json ├── kode-ci-build-1.0.0 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── kong_json_schema │ ├── README.md │ ├── index.d.ts │ └── package.json ├── ksp-avc │ ├── README.md │ ├── index.d.ts │ └── package.json ├── ksp-ckan-1.16 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── ksp-ckan │ ├── README.md │ ├── index.d.ts │ └── package.json ├── launchsettings │ ├── README.md │ ├── index.d.ts │ └── package.json ├── lerna │ ├── README.md │ ├── index.d.ts │ └── package.json ├── libman │ ├── README.md │ ├── index.d.ts │ └── package.json ├── licenses.1 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── lintstagedrc.schema │ ├── README.md │ ├── index.d.ts │ └── package.json ├── liquibase-3.2 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── lsdlschema-0.7 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── lsdlschema-1.0 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── lsdlschema-2.0 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── lsdlschema │ ├── README.md │ ├── index.d.ts │ └── package.json ├── mimetypes │ ├── README.md │ ├── index.d.ts │ └── package.json ├── minecraft-advancement │ ├── README.md │ ├── index.d.ts │ └── package.json ├── monika-config-schema │ ├── README.md │ ├── index.d.ts │ └── package.json ├── mta │ ├── README.md │ ├── index.d.ts │ └── package.json ├── mtad │ ├── README.md │ ├── index.d.ts │ └── package.json ├── mtaext │ ├── README.md │ ├── index.d.ts │ └── package.json ├── mycode │ ├── README.md │ ├── index.d.ts │ └── package.json ├── neoload │ ├── README.md │ ├── index.d.ts │ └── package.json ├── nest-cli │ ├── README.md │ ├── index.d.ts │ └── package.json ├── ninjs-1.0 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── ninjs-1.1 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── ninjs-1.2 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── ninjs │ ├── README.md │ ├── index.d.ts │ └── package.json ├── nlu │ ├── README.md │ ├── index.d.ts │ └── package.json ├── nodehawkrc │ ├── README.md │ ├── index.d.ts │ └── package.json ├── nodemon │ ├── README.md │ ├── index.d.ts │ └── package.json ├── now │ ├── README.md │ ├── index.d.ts │ └── package.json ├── npm-link-up │ ├── README.md │ ├── index.d.ts │ └── package.json ├── npmpackagejsonlintrc │ ├── README.md │ ├── index.d.ts │ └── package.json ├── nswag │ ├── README.md │ ├── index.d.ts │ └── package.json ├── nuget-project-3.3.0 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── nuget-project │ ├── README.md │ ├── index.d.ts │ └── package.json ├── ocelot │ ├── README.md │ ├── index.d.ts │ └── package.json ├── omnisharp │ ├── README.md │ ├── index.d.ts │ └── package.json ├── openfin │ ├── README.md │ ├── index.d.ts │ └── package.json ├── opspec-io-0.1.7 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── package.manifest-7.0.0 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── package.manifest-8.0.0 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── package.manifest │ ├── README.md │ ├── index.d.ts │ └── package.json ├── package │ ├── README.md │ ├── index.d.ts │ └── package.json ├── pattern │ ├── README.md │ ├── index.d.ts │ └── package.json ├── phraseapp │ ├── README.md │ ├── index.d.ts │ └── package.json ├── pre-commit-config │ ├── README.md │ ├── index.d.ts │ └── package.json ├── pre-commit-hooks │ ├── README.md │ ├── index.d.ts │ └── package.json ├── prettierrc-1.8.2 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── prettierrc │ ├── README.md │ ├── index.d.ts │ └── package.json ├── prisma │ ├── README.md │ ├── index.d.ts │ └── package.json ├── project-1.0.0-beta3 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── project-1.0.0-beta4 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── project-1.0.0-beta5 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── project-1.0.0-beta6 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── project-1.0.0-beta8 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── project │ ├── README.md │ ├── index.d.ts │ └── package.json ├── prometheus.rules │ ├── README.md │ ├── index.d.ts │ └── package.json ├── prometheus │ ├── README.md │ ├── index.d.ts │ └── package.json ├── pubspec │ ├── README.md │ ├── index.d.ts │ └── package.json ├── pyproject │ ├── README.md │ ├── index.d.ts │ └── package.json ├── pyrseas-0.8 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── qodana-1.0 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── renovate │ ├── README.md │ ├── index.d.ts │ └── package.json ├── resjson │ ├── README.md │ ├── index.d.ts │ └── package.json ├── resume │ ├── README.md │ ├── index.d.ts │ └── package.json ├── rust-toolchain │ ├── README.md │ ├── index.d.ts │ └── package.json ├── sarif-1.0.0 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── sarif-2.0.0-csd.2.beta.2018-10-10 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── sarif-2.0.0-csd.2.beta.2019-01-09 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── sarif-2.0.0-csd.2.beta.2019-01-24 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── sarif-2.0.0 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── sarif-2.1.0-rtm.0 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── sarif-2.1.0-rtm.1 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── sarif-2.1.0-rtm.2 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── sarif-2.1.0-rtm.3 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── sarif-2.1.0-rtm.4 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── sarif-2.1.0-rtm.5 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── sarif │ ├── README.md │ ├── index.d.ts │ └── package.json ├── schema-catalog │ ├── README.md │ ├── index.d.ts │ └── package.json ├── schema-draft-v4 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── settings.job │ ├── README.md │ ├── index.d.ts │ └── package.json ├── solidarityschema │ ├── README.md │ ├── index.d.ts │ └── package.json ├── sourcehut-build │ ├── README.md │ ├── index.d.ts │ └── package.json ├── sourcemap-v3 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── sprite │ ├── README.md │ ├── index.d.ts │ └── package.json ├── staticwebapp.config │ ├── README.md │ ├── index.d.ts │ └── package.json ├── stylelintrc │ ├── README.md │ ├── index.d.ts │ └── package.json ├── stylintrc │ ├── README.md │ ├── index.d.ts │ └── package.json ├── swagger-2.0 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── swcrc │ ├── README.md │ ├── index.d.ts │ └── package.json ├── taskfile │ ├── README.md │ ├── index.d.ts │ └── package.json ├── template │ ├── README.md │ ├── index.d.ts │ └── package.json ├── traefik-v2-file-provider │ ├── README.md │ ├── index.d.ts │ └── package.json ├── traefik-v2 │ ├── README.md │ ├── index.d.ts │ └── package.json ├── travis │ ├── README.md │ ├── index.d.ts │ └── package.json ├── ts-force-config │ ├── README.md │ ├── index.d.ts │ └── package.json ├── tsconfig │ ├── README.md │ ├── index.d.ts │ └── package.json ├── tsd │ ├── README.md │ ├── index.d.ts │ └── package.json ├── tsdrc │ ├── README.md │ ├── index.d.ts │ └── package.json ├── tslint │ ├── README.md │ ├── index.d.ts │ └── package.json ├── typedoc │ ├── README.md │ ├── index.d.ts │ └── package.json ├── typewiz │ ├── README.md │ ├── index.d.ts │ └── package.json ├── up │ ├── README.md │ ├── index.d.ts │ └── package.json ├── vim-addon-info │ ├── README.md │ ├── index.d.ts │ └── package.json ├── vs-2017.3.host │ ├── README.md │ ├── index.d.ts │ └── package.json ├── vs-nesting │ ├── README.md │ ├── index.d.ts │ └── package.json ├── vsconfig │ ├── README.md │ ├── index.d.ts │ └── package.json ├── vsext │ ├── README.md │ ├── index.d.ts │ └── package.json ├── vsix-manifestinjection │ ├── README.md │ ├── index.d.ts │ └── package.json ├── vsix-publish │ ├── README.md │ ├── index.d.ts │ └── package.json ├── vsls │ ├── README.md │ ├── index.d.ts │ └── package.json ├── web-manifest │ ├── README.md │ ├── index.d.ts │ └── package.json ├── web-types │ ├── README.md │ ├── index.d.ts │ └── package.json ├── webextension │ ├── README.md │ ├── index.d.ts │ └── package.json ├── webjob-publish-settings │ ├── README.md │ ├── index.d.ts │ └── package.json ├── webjobs-list │ ├── README.md │ ├── index.d.ts │ └── package.json ├── workflows │ ├── README.md │ ├── index.d.ts │ └── package.json └── xunit.runner.schema │ ├── README.md │ ├── index.d.ts │ └── package.json ├── settings.json ├── src ├── SchemaGenerator.ts ├── cli.ts ├── index.ts └── interfaces.ts ├── tsconfig.json ├── tsconfig.schemas.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build_test_publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/.github/workflows/build_test_publish.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/gitlab_mirror.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/.github/workflows/gitlab_mirror.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | package.json 4 | schemas 5 | temp 6 | CHANGELOG.md 7 | .yarn 8 | -------------------------------------------------------------------------------- /.yarn/releases/yarn-4.9.2.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/.yarn/releases/yarn-4.9.2.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/SECURITY.md -------------------------------------------------------------------------------- /bin/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/bin/publish.sh -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/lefthook.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/package.json -------------------------------------------------------------------------------- /schemas/BizTalkServerApplicationSchema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/BizTalkServerApplicationSchema/README.md -------------------------------------------------------------------------------- /schemas/BizTalkServerApplicationSchema/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/BizTalkServerApplicationSchema/index.d.ts -------------------------------------------------------------------------------- /schemas/BizTalkServerApplicationSchema/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/BizTalkServerApplicationSchema/package.json -------------------------------------------------------------------------------- /schemas/accelerator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/accelerator/README.md -------------------------------------------------------------------------------- /schemas/accelerator/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/accelerator/index.d.ts -------------------------------------------------------------------------------- /schemas/accelerator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/accelerator/package.json -------------------------------------------------------------------------------- /schemas/agripparc-1.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/agripparc-1.2/README.md -------------------------------------------------------------------------------- /schemas/agripparc-1.2/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/agripparc-1.2/index.d.ts -------------------------------------------------------------------------------- /schemas/agripparc-1.2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/agripparc-1.2/package.json -------------------------------------------------------------------------------- /schemas/agripparc-1.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/agripparc-1.3/README.md -------------------------------------------------------------------------------- /schemas/agripparc-1.3/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/agripparc-1.3/index.d.ts -------------------------------------------------------------------------------- /schemas/agripparc-1.3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/agripparc-1.3/package.json -------------------------------------------------------------------------------- /schemas/agripparc-1.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/agripparc-1.4/README.md -------------------------------------------------------------------------------- /schemas/agripparc-1.4/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/agripparc-1.4/index.d.ts -------------------------------------------------------------------------------- /schemas/agripparc-1.4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/agripparc-1.4/package.json -------------------------------------------------------------------------------- /schemas/aiproj-1.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/aiproj-1.0/README.md -------------------------------------------------------------------------------- /schemas/aiproj-1.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/aiproj-1.0/index.d.ts -------------------------------------------------------------------------------- /schemas/aiproj-1.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/aiproj-1.0/package.json -------------------------------------------------------------------------------- /schemas/aiproj-1.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/aiproj-1.1/README.md -------------------------------------------------------------------------------- /schemas/aiproj-1.1/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/aiproj-1.1/index.d.ts -------------------------------------------------------------------------------- /schemas/aiproj-1.1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/aiproj-1.1/package.json -------------------------------------------------------------------------------- /schemas/aiproj/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/aiproj/README.md -------------------------------------------------------------------------------- /schemas/aiproj/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/aiproj/index.d.ts -------------------------------------------------------------------------------- /schemas/aiproj/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/aiproj/package.json -------------------------------------------------------------------------------- /schemas/airlock-microgateway-3.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/airlock-microgateway-3.0/README.md -------------------------------------------------------------------------------- /schemas/airlock-microgateway-3.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/airlock-microgateway-3.0/index.d.ts -------------------------------------------------------------------------------- /schemas/airlock-microgateway-3.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/airlock-microgateway-3.0/package.json -------------------------------------------------------------------------------- /schemas/airlock-microgateway-3.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/airlock-microgateway-3.1/README.md -------------------------------------------------------------------------------- /schemas/airlock-microgateway-3.1/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/airlock-microgateway-3.1/index.d.ts -------------------------------------------------------------------------------- /schemas/airlock-microgateway-3.1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/airlock-microgateway-3.1/package.json -------------------------------------------------------------------------------- /schemas/airlock-microgateway-3.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/airlock-microgateway-3.2/README.md -------------------------------------------------------------------------------- /schemas/airlock-microgateway-3.2/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/airlock-microgateway-3.2/index.d.ts -------------------------------------------------------------------------------- /schemas/airlock-microgateway-3.2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/airlock-microgateway-3.2/package.json -------------------------------------------------------------------------------- /schemas/all-contributors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/all-contributors/README.md -------------------------------------------------------------------------------- /schemas/all-contributors/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/all-contributors/index.d.ts -------------------------------------------------------------------------------- /schemas/all-contributors/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/all-contributors/package.json -------------------------------------------------------------------------------- /schemas/ansible-stable-2.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ansible-stable-2.0/README.md -------------------------------------------------------------------------------- /schemas/ansible-stable-2.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ansible-stable-2.0/index.d.ts -------------------------------------------------------------------------------- /schemas/ansible-stable-2.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ansible-stable-2.0/package.json -------------------------------------------------------------------------------- /schemas/ansible-stable-2.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ansible-stable-2.1/README.md -------------------------------------------------------------------------------- /schemas/ansible-stable-2.1/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ansible-stable-2.1/index.d.ts -------------------------------------------------------------------------------- /schemas/ansible-stable-2.1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ansible-stable-2.1/package.json -------------------------------------------------------------------------------- /schemas/ansible-stable-2.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ansible-stable-2.2/README.md -------------------------------------------------------------------------------- /schemas/ansible-stable-2.2/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ansible-stable-2.2/index.d.ts -------------------------------------------------------------------------------- /schemas/ansible-stable-2.2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ansible-stable-2.2/package.json -------------------------------------------------------------------------------- /schemas/ansible-stable-2.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ansible-stable-2.3/README.md -------------------------------------------------------------------------------- /schemas/ansible-stable-2.3/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ansible-stable-2.3/index.d.ts -------------------------------------------------------------------------------- /schemas/ansible-stable-2.3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ansible-stable-2.3/package.json -------------------------------------------------------------------------------- /schemas/ansible-stable-2.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ansible-stable-2.4/README.md -------------------------------------------------------------------------------- /schemas/ansible-stable-2.4/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ansible-stable-2.4/index.d.ts -------------------------------------------------------------------------------- /schemas/ansible-stable-2.4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ansible-stable-2.4/package.json -------------------------------------------------------------------------------- /schemas/ansible-stable-2.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ansible-stable-2.5/README.md -------------------------------------------------------------------------------- /schemas/ansible-stable-2.5/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ansible-stable-2.5/index.d.ts -------------------------------------------------------------------------------- /schemas/ansible-stable-2.5/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ansible-stable-2.5/package.json -------------------------------------------------------------------------------- /schemas/ansible-stable-2.6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ansible-stable-2.6/README.md -------------------------------------------------------------------------------- /schemas/ansible-stable-2.6/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ansible-stable-2.6/index.d.ts -------------------------------------------------------------------------------- /schemas/ansible-stable-2.6/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ansible-stable-2.6/package.json -------------------------------------------------------------------------------- /schemas/ansible-stable-2.7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ansible-stable-2.7/README.md -------------------------------------------------------------------------------- /schemas/ansible-stable-2.7/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ansible-stable-2.7/index.d.ts -------------------------------------------------------------------------------- /schemas/ansible-stable-2.7/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ansible-stable-2.7/package.json -------------------------------------------------------------------------------- /schemas/anywork-ac-1.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/anywork-ac-1.0/README.md -------------------------------------------------------------------------------- /schemas/anywork-ac-1.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/anywork-ac-1.0/index.d.ts -------------------------------------------------------------------------------- /schemas/anywork-ac-1.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/anywork-ac-1.0/package.json -------------------------------------------------------------------------------- /schemas/anywork-ac-1.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/anywork-ac-1.1/README.md -------------------------------------------------------------------------------- /schemas/anywork-ac-1.1/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/anywork-ac-1.1/index.d.ts -------------------------------------------------------------------------------- /schemas/anywork-ac-1.1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/anywork-ac-1.1/package.json -------------------------------------------------------------------------------- /schemas/apibuilder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/apibuilder/README.md -------------------------------------------------------------------------------- /schemas/apibuilder/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/apibuilder/index.d.ts -------------------------------------------------------------------------------- /schemas/apibuilder/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/apibuilder/package.json -------------------------------------------------------------------------------- /schemas/apple-app-site-association/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/apple-app-site-association/README.md -------------------------------------------------------------------------------- /schemas/apple-app-site-association/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/apple-app-site-association/index.d.ts -------------------------------------------------------------------------------- /schemas/apple-app-site-association/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/apple-app-site-association/package.json -------------------------------------------------------------------------------- /schemas/appsettings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/appsettings/README.md -------------------------------------------------------------------------------- /schemas/appsettings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/appsettings/index.d.ts -------------------------------------------------------------------------------- /schemas/appsettings/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/appsettings/package.json -------------------------------------------------------------------------------- /schemas/appsscript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/appsscript/README.md -------------------------------------------------------------------------------- /schemas/appsscript/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/appsscript/index.d.ts -------------------------------------------------------------------------------- /schemas/appsscript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/appsscript/package.json -------------------------------------------------------------------------------- /schemas/appveyor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/appveyor/README.md -------------------------------------------------------------------------------- /schemas/appveyor/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/appveyor/index.d.ts -------------------------------------------------------------------------------- /schemas/appveyor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/appveyor/package.json -------------------------------------------------------------------------------- /schemas/artifacthub-repo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/artifacthub-repo/README.md -------------------------------------------------------------------------------- /schemas/artifacthub-repo/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/artifacthub-repo/index.d.ts -------------------------------------------------------------------------------- /schemas/artifacthub-repo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/artifacthub-repo/package.json -------------------------------------------------------------------------------- /schemas/asconfig-schema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/asconfig-schema/README.md -------------------------------------------------------------------------------- /schemas/asconfig-schema/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/asconfig-schema/index.d.ts -------------------------------------------------------------------------------- /schemas/asconfig-schema/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/asconfig-schema/package.json -------------------------------------------------------------------------------- /schemas/asmdef/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/asmdef/README.md -------------------------------------------------------------------------------- /schemas/asmdef/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/asmdef/index.d.ts -------------------------------------------------------------------------------- /schemas/asmdef/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/asmdef/package.json -------------------------------------------------------------------------------- /schemas/ava/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ava/README.md -------------------------------------------------------------------------------- /schemas/ava/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ava/index.d.ts -------------------------------------------------------------------------------- /schemas/ava/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ava/package.json -------------------------------------------------------------------------------- /schemas/avro-avsc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/avro-avsc/README.md -------------------------------------------------------------------------------- /schemas/avro-avsc/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/avro-avsc/index.d.ts -------------------------------------------------------------------------------- /schemas/avro-avsc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/avro-avsc/package.json -------------------------------------------------------------------------------- /schemas/azure-iot-edge-deployment-1.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/azure-iot-edge-deployment-1.0/README.md -------------------------------------------------------------------------------- /schemas/azure-iot-edge-deployment-1.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/azure-iot-edge-deployment-1.0/index.d.ts -------------------------------------------------------------------------------- /schemas/azure-iot-edge-deployment-1.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/azure-iot-edge-deployment-1.0/package.json -------------------------------------------------------------------------------- /schemas/azure-iot-edge-deployment-2.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/azure-iot-edge-deployment-2.0/README.md -------------------------------------------------------------------------------- /schemas/azure-iot-edge-deployment-2.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/azure-iot-edge-deployment-2.0/index.d.ts -------------------------------------------------------------------------------- /schemas/azure-iot-edge-deployment-2.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/azure-iot-edge-deployment-2.0/package.json -------------------------------------------------------------------------------- /schemas/azure-iot-edgehub-deployment-1.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/azure-iot-edgehub-deployment-1.0/README.md -------------------------------------------------------------------------------- /schemas/azure-iot-edgehub-deployment-1.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/azure-iot-edgehub-deployment-1.0/index.d.ts -------------------------------------------------------------------------------- /schemas/azure-iot-edgehub-deployment-1.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/azure-iot-edgehub-deployment-1.1/README.md -------------------------------------------------------------------------------- /schemas/azure-iot-edgehub-deployment-1.1/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/azure-iot-edgehub-deployment-1.1/index.d.ts -------------------------------------------------------------------------------- /schemas/azure-iot-edgehub-deployment-1.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/azure-iot-edgehub-deployment-1.2/README.md -------------------------------------------------------------------------------- /schemas/azure-iot-edgehub-deployment-1.2/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/azure-iot-edgehub-deployment-1.2/index.d.ts -------------------------------------------------------------------------------- /schemas/babelrc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/babelrc/README.md -------------------------------------------------------------------------------- /schemas/babelrc/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/babelrc/index.d.ts -------------------------------------------------------------------------------- /schemas/babelrc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/babelrc/package.json -------------------------------------------------------------------------------- /schemas/backportrc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/backportrc/README.md -------------------------------------------------------------------------------- /schemas/backportrc/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/backportrc/index.d.ts -------------------------------------------------------------------------------- /schemas/backportrc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/backportrc/package.json -------------------------------------------------------------------------------- /schemas/bamboo-spec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bamboo-spec/README.md -------------------------------------------------------------------------------- /schemas/bamboo-spec/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bamboo-spec/index.d.ts -------------------------------------------------------------------------------- /schemas/bamboo-spec/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bamboo-spec/package.json -------------------------------------------------------------------------------- /schemas/band-manifest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/band-manifest/README.md -------------------------------------------------------------------------------- /schemas/band-manifest/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/band-manifest/index.d.ts -------------------------------------------------------------------------------- /schemas/band-manifest/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/band-manifest/package.json -------------------------------------------------------------------------------- /schemas/base-04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/base-04/README.md -------------------------------------------------------------------------------- /schemas/base-04/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/base-04/index.d.ts -------------------------------------------------------------------------------- /schemas/base-04/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/base-04/package.json -------------------------------------------------------------------------------- /schemas/base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/base/README.md -------------------------------------------------------------------------------- /schemas/base/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/base/index.d.ts -------------------------------------------------------------------------------- /schemas/base/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/base/package.json -------------------------------------------------------------------------------- /schemas/behat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/behat/README.md -------------------------------------------------------------------------------- /schemas/behat/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/behat/index.d.ts -------------------------------------------------------------------------------- /schemas/behat/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/behat/package.json -------------------------------------------------------------------------------- /schemas/bettercodehub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bettercodehub/README.md -------------------------------------------------------------------------------- /schemas/bettercodehub/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bettercodehub/index.d.ts -------------------------------------------------------------------------------- /schemas/bettercodehub/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bettercodehub/package.json -------------------------------------------------------------------------------- /schemas/bigquery-table/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bigquery-table/README.md -------------------------------------------------------------------------------- /schemas/bigquery-table/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bigquery-table/index.d.ts -------------------------------------------------------------------------------- /schemas/bigquery-table/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bigquery-table/package.json -------------------------------------------------------------------------------- /schemas/block/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/block/README.md -------------------------------------------------------------------------------- /schemas/block/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/block/index.d.ts -------------------------------------------------------------------------------- /schemas/block/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/block/package.json -------------------------------------------------------------------------------- /schemas/bootstraprc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bootstraprc/README.md -------------------------------------------------------------------------------- /schemas/bootstraprc/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bootstraprc/index.d.ts -------------------------------------------------------------------------------- /schemas/bootstraprc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bootstraprc/package.json -------------------------------------------------------------------------------- /schemas/bower/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bower/README.md -------------------------------------------------------------------------------- /schemas/bower/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bower/index.d.ts -------------------------------------------------------------------------------- /schemas/bower/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bower/package.json -------------------------------------------------------------------------------- /schemas/bowerrc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bowerrc/README.md -------------------------------------------------------------------------------- /schemas/bowerrc/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bowerrc/index.d.ts -------------------------------------------------------------------------------- /schemas/bowerrc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bowerrc/package.json -------------------------------------------------------------------------------- /schemas/bozr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bozr/README.md -------------------------------------------------------------------------------- /schemas/bozr/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bozr/index.d.ts -------------------------------------------------------------------------------- /schemas/bozr/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bozr/package.json -------------------------------------------------------------------------------- /schemas/bukkit-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bukkit-plugin/README.md -------------------------------------------------------------------------------- /schemas/bukkit-plugin/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bukkit-plugin/index.d.ts -------------------------------------------------------------------------------- /schemas/bukkit-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bukkit-plugin/package.json -------------------------------------------------------------------------------- /schemas/bundleconfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bundleconfig/README.md -------------------------------------------------------------------------------- /schemas/bundleconfig/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bundleconfig/index.d.ts -------------------------------------------------------------------------------- /schemas/bundleconfig/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bundleconfig/package.json -------------------------------------------------------------------------------- /schemas/bungee-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bungee-plugin/README.md -------------------------------------------------------------------------------- /schemas/bungee-plugin/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bungee-plugin/index.d.ts -------------------------------------------------------------------------------- /schemas/bungee-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bungee-plugin/package.json -------------------------------------------------------------------------------- /schemas/bxci.schema-1.0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bxci.schema-1.0.1/README.md -------------------------------------------------------------------------------- /schemas/bxci.schema-1.0.1/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bxci.schema-1.0.1/index.d.ts -------------------------------------------------------------------------------- /schemas/bxci.schema-1.0.1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bxci.schema-1.0.1/package.json -------------------------------------------------------------------------------- /schemas/bxci.schema-1.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bxci.schema-1.0/README.md -------------------------------------------------------------------------------- /schemas/bxci.schema-1.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bxci.schema-1.0/index.d.ts -------------------------------------------------------------------------------- /schemas/bxci.schema-1.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bxci.schema-1.0/package.json -------------------------------------------------------------------------------- /schemas/bxci.schema-2.0.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bxci.schema-2.0.0/README.md -------------------------------------------------------------------------------- /schemas/bxci.schema-2.0.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bxci.schema-2.0.0/index.d.ts -------------------------------------------------------------------------------- /schemas/bxci.schema-2.0.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bxci.schema-2.0.0/package.json -------------------------------------------------------------------------------- /schemas/bxci.schema-2.x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bxci.schema-2.x/README.md -------------------------------------------------------------------------------- /schemas/bxci.schema-2.x/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bxci.schema-2.x/index.d.ts -------------------------------------------------------------------------------- /schemas/bxci.schema-2.x/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/bxci.schema-2.x/package.json -------------------------------------------------------------------------------- /schemas/cdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/cdk/README.md -------------------------------------------------------------------------------- /schemas/cdk/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/cdk/index.d.ts -------------------------------------------------------------------------------- /schemas/cdk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/cdk/package.json -------------------------------------------------------------------------------- /schemas/cheatsheets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/cheatsheets/README.md -------------------------------------------------------------------------------- /schemas/cheatsheets/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/cheatsheets/index.d.ts -------------------------------------------------------------------------------- /schemas/cheatsheets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/cheatsheets/package.json -------------------------------------------------------------------------------- /schemas/chrome-manifest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/chrome-manifest/README.md -------------------------------------------------------------------------------- /schemas/chrome-manifest/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/chrome-manifest/index.d.ts -------------------------------------------------------------------------------- /schemas/chrome-manifest/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/chrome-manifest/package.json -------------------------------------------------------------------------------- /schemas/chutzpah/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/chutzpah/README.md -------------------------------------------------------------------------------- /schemas/chutzpah/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/chutzpah/index.d.ts -------------------------------------------------------------------------------- /schemas/chutzpah/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/chutzpah/package.json -------------------------------------------------------------------------------- /schemas/circleciconfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/circleciconfig/README.md -------------------------------------------------------------------------------- /schemas/circleciconfig/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/circleciconfig/index.d.ts -------------------------------------------------------------------------------- /schemas/circleciconfig/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/circleciconfig/package.json -------------------------------------------------------------------------------- /schemas/cirrus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/cirrus/README.md -------------------------------------------------------------------------------- /schemas/cirrus/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/cirrus/index.d.ts -------------------------------------------------------------------------------- /schemas/cirrus/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/cirrus/package.json -------------------------------------------------------------------------------- /schemas/clang-format/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/clang-format/README.md -------------------------------------------------------------------------------- /schemas/clang-format/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/clang-format/index.d.ts -------------------------------------------------------------------------------- /schemas/clang-format/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/clang-format/package.json -------------------------------------------------------------------------------- /schemas/clasp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/clasp/README.md -------------------------------------------------------------------------------- /schemas/clasp/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/clasp/index.d.ts -------------------------------------------------------------------------------- /schemas/clasp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/clasp/package.json -------------------------------------------------------------------------------- /schemas/cloud-sdk-pipeline-config-schema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/cloud-sdk-pipeline-config-schema/README.md -------------------------------------------------------------------------------- /schemas/cloud-sdk-pipeline-config-schema/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/cloud-sdk-pipeline-config-schema/index.d.ts -------------------------------------------------------------------------------- /schemas/cloudbuild/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/cloudbuild/README.md -------------------------------------------------------------------------------- /schemas/cloudbuild/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/cloudbuild/index.d.ts -------------------------------------------------------------------------------- /schemas/cloudbuild/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/cloudbuild/package.json -------------------------------------------------------------------------------- /schemas/codecov/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/codecov/README.md -------------------------------------------------------------------------------- /schemas/codecov/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/codecov/index.d.ts -------------------------------------------------------------------------------- /schemas/codecov/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/codecov/package.json -------------------------------------------------------------------------------- /schemas/coffeelint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/coffeelint/README.md -------------------------------------------------------------------------------- /schemas/coffeelint/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/coffeelint/index.d.ts -------------------------------------------------------------------------------- /schemas/coffeelint/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/coffeelint/package.json -------------------------------------------------------------------------------- /schemas/comet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/comet/README.md -------------------------------------------------------------------------------- /schemas/comet/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/comet/index.d.ts -------------------------------------------------------------------------------- /schemas/comet/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/comet/package.json -------------------------------------------------------------------------------- /schemas/commands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/commands/README.md -------------------------------------------------------------------------------- /schemas/commands/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/commands/index.d.ts -------------------------------------------------------------------------------- /schemas/commands/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/commands/package.json -------------------------------------------------------------------------------- /schemas/compile-commands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/compile-commands/README.md -------------------------------------------------------------------------------- /schemas/compile-commands/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/compile-commands/index.d.ts -------------------------------------------------------------------------------- /schemas/compile-commands/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/compile-commands/package.json -------------------------------------------------------------------------------- /schemas/compilerconfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/compilerconfig/README.md -------------------------------------------------------------------------------- /schemas/compilerconfig/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/compilerconfig/index.d.ts -------------------------------------------------------------------------------- /schemas/compilerconfig/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/compilerconfig/package.json -------------------------------------------------------------------------------- /schemas/compilerdefaults/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/compilerdefaults/README.md -------------------------------------------------------------------------------- /schemas/compilerdefaults/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/compilerdefaults/index.d.ts -------------------------------------------------------------------------------- /schemas/compilerdefaults/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/compilerdefaults/package.json -------------------------------------------------------------------------------- /schemas/component/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/component/README.md -------------------------------------------------------------------------------- /schemas/component/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/component/index.d.ts -------------------------------------------------------------------------------- /schemas/component/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/component/package.json -------------------------------------------------------------------------------- /schemas/composer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/composer/README.md -------------------------------------------------------------------------------- /schemas/composer/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/composer/index.d.ts -------------------------------------------------------------------------------- /schemas/composer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/composer/package.json -------------------------------------------------------------------------------- /schemas/config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/config/README.md -------------------------------------------------------------------------------- /schemas/config/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/config/index.d.ts -------------------------------------------------------------------------------- /schemas/config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/config/package.json -------------------------------------------------------------------------------- /schemas/container-structure-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/container-structure-test/README.md -------------------------------------------------------------------------------- /schemas/container-structure-test/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/container-structure-test/index.d.ts -------------------------------------------------------------------------------- /schemas/container-structure-test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/container-structure-test/package.json -------------------------------------------------------------------------------- /schemas/content-security-policy-report-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/content-security-policy-report-2/README.md -------------------------------------------------------------------------------- /schemas/contribute/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/contribute/README.md -------------------------------------------------------------------------------- /schemas/contribute/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/contribute/index.d.ts -------------------------------------------------------------------------------- /schemas/contribute/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/contribute/package.json -------------------------------------------------------------------------------- /schemas/cosmos-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/cosmos-config/README.md -------------------------------------------------------------------------------- /schemas/cosmos-config/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/cosmos-config/index.d.ts -------------------------------------------------------------------------------- /schemas/cosmos-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/cosmos-config/package.json -------------------------------------------------------------------------------- /schemas/creatomic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/creatomic/README.md -------------------------------------------------------------------------------- /schemas/creatomic/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/creatomic/index.d.ts -------------------------------------------------------------------------------- /schemas/creatomic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/creatomic/package.json -------------------------------------------------------------------------------- /schemas/cryproj.52.schema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/cryproj.52.schema/README.md -------------------------------------------------------------------------------- /schemas/cryproj.52.schema/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/cryproj.52.schema/index.d.ts -------------------------------------------------------------------------------- /schemas/cryproj.52.schema/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/cryproj.52.schema/package.json -------------------------------------------------------------------------------- /schemas/cryproj.53.schema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/cryproj.53.schema/README.md -------------------------------------------------------------------------------- /schemas/cryproj.53.schema/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/cryproj.53.schema/index.d.ts -------------------------------------------------------------------------------- /schemas/cryproj.53.schema/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/cryproj.53.schema/package.json -------------------------------------------------------------------------------- /schemas/cryproj.54.schema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/cryproj.54.schema/README.md -------------------------------------------------------------------------------- /schemas/cryproj.54.schema/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/cryproj.54.schema/index.d.ts -------------------------------------------------------------------------------- /schemas/cryproj.54.schema/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/cryproj.54.schema/package.json -------------------------------------------------------------------------------- /schemas/cryproj.55.schema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/cryproj.55.schema/README.md -------------------------------------------------------------------------------- /schemas/cryproj.55.schema/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/cryproj.55.schema/index.d.ts -------------------------------------------------------------------------------- /schemas/cryproj.55.schema/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/cryproj.55.schema/package.json -------------------------------------------------------------------------------- /schemas/cryproj.dev.schema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/cryproj.dev.schema/README.md -------------------------------------------------------------------------------- /schemas/cryproj.dev.schema/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/cryproj.dev.schema/index.d.ts -------------------------------------------------------------------------------- /schemas/cryproj.dev.schema/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/cryproj.dev.schema/package.json -------------------------------------------------------------------------------- /schemas/cryproj/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/cryproj/README.md -------------------------------------------------------------------------------- /schemas/cryproj/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/cryproj/index.d.ts -------------------------------------------------------------------------------- /schemas/cryproj/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/cryproj/package.json -------------------------------------------------------------------------------- /schemas/csr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/csr/README.md -------------------------------------------------------------------------------- /schemas/csr/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/csr/index.d.ts -------------------------------------------------------------------------------- /schemas/csr/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/csr/package.json -------------------------------------------------------------------------------- /schemas/csscomb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/csscomb/README.md -------------------------------------------------------------------------------- /schemas/csscomb/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/csscomb/index.d.ts -------------------------------------------------------------------------------- /schemas/csscomb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/csscomb/package.json -------------------------------------------------------------------------------- /schemas/csslintrc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/csslintrc/README.md -------------------------------------------------------------------------------- /schemas/csslintrc/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/csslintrc/index.d.ts -------------------------------------------------------------------------------- /schemas/csslintrc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/csslintrc/package.json -------------------------------------------------------------------------------- /schemas/datalogic-scan2deploy-android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/datalogic-scan2deploy-android/README.md -------------------------------------------------------------------------------- /schemas/datalogic-scan2deploy-android/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/datalogic-scan2deploy-android/index.d.ts -------------------------------------------------------------------------------- /schemas/datalogic-scan2deploy-ce/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/datalogic-scan2deploy-ce/README.md -------------------------------------------------------------------------------- /schemas/datalogic-scan2deploy-ce/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/datalogic-scan2deploy-ce/index.d.ts -------------------------------------------------------------------------------- /schemas/datalogic-scan2deploy-ce/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/datalogic-scan2deploy-ce/package.json -------------------------------------------------------------------------------- /schemas/debugsettings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/debugsettings/README.md -------------------------------------------------------------------------------- /schemas/debugsettings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/debugsettings/index.d.ts -------------------------------------------------------------------------------- /schemas/debugsettings/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/debugsettings/package.json -------------------------------------------------------------------------------- /schemas/dein/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/dein/README.md -------------------------------------------------------------------------------- /schemas/dein/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/dein/index.d.ts -------------------------------------------------------------------------------- /schemas/dein/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/dein/package.json -------------------------------------------------------------------------------- /schemas/dependabot-2.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/dependabot-2.0/README.md -------------------------------------------------------------------------------- /schemas/dependabot-2.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/dependabot-2.0/index.d.ts -------------------------------------------------------------------------------- /schemas/dependabot-2.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/dependabot-2.0/package.json -------------------------------------------------------------------------------- /schemas/dependabot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/dependabot/README.md -------------------------------------------------------------------------------- /schemas/dependabot/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/dependabot/index.d.ts -------------------------------------------------------------------------------- /schemas/dependabot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/dependabot/package.json -------------------------------------------------------------------------------- /schemas/docfx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/docfx/README.md -------------------------------------------------------------------------------- /schemas/docfx/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/docfx/index.d.ts -------------------------------------------------------------------------------- /schemas/docfx/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/docfx/package.json -------------------------------------------------------------------------------- /schemas/dotnetcli.host/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/dotnetcli.host/README.md -------------------------------------------------------------------------------- /schemas/dotnetcli.host/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/dotnetcli.host/index.d.ts -------------------------------------------------------------------------------- /schemas/dotnetcli.host/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/dotnetcli.host/package.json -------------------------------------------------------------------------------- /schemas/drone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/drone/README.md -------------------------------------------------------------------------------- /schemas/drone/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/drone/index.d.ts -------------------------------------------------------------------------------- /schemas/drone/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/drone/package.json -------------------------------------------------------------------------------- /schemas/drush.site.yml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/drush.site.yml/README.md -------------------------------------------------------------------------------- /schemas/drush.site.yml/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/drush.site.yml/index.d.ts -------------------------------------------------------------------------------- /schemas/drush.site.yml/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/drush.site.yml/package.json -------------------------------------------------------------------------------- /schemas/dss-2.0.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/dss-2.0.0/README.md -------------------------------------------------------------------------------- /schemas/dss-2.0.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/dss-2.0.0/index.d.ts -------------------------------------------------------------------------------- /schemas/dss-2.0.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/dss-2.0.0/package.json -------------------------------------------------------------------------------- /schemas/electron-builder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/electron-builder/README.md -------------------------------------------------------------------------------- /schemas/electron-builder/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/electron-builder/index.d.ts -------------------------------------------------------------------------------- /schemas/electron-builder/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/electron-builder/package.json -------------------------------------------------------------------------------- /schemas/embrace-config-schema-1.0.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/embrace-config-schema-1.0.0/README.md -------------------------------------------------------------------------------- /schemas/embrace-config-schema-1.0.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/embrace-config-schema-1.0.0/index.d.ts -------------------------------------------------------------------------------- /schemas/embrace-config-schema-1.0.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/embrace-config-schema-1.0.0/package.json -------------------------------------------------------------------------------- /schemas/epr-manifest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/epr-manifest/README.md -------------------------------------------------------------------------------- /schemas/epr-manifest/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/epr-manifest/index.d.ts -------------------------------------------------------------------------------- /schemas/epr-manifest/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/epr-manifest/package.json -------------------------------------------------------------------------------- /schemas/eslintrc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/eslintrc/README.md -------------------------------------------------------------------------------- /schemas/eslintrc/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/eslintrc/index.d.ts -------------------------------------------------------------------------------- /schemas/eslintrc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/eslintrc/package.json -------------------------------------------------------------------------------- /schemas/esquio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/esquio/README.md -------------------------------------------------------------------------------- /schemas/esquio/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/esquio/index.d.ts -------------------------------------------------------------------------------- /schemas/esquio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/esquio/package.json -------------------------------------------------------------------------------- /schemas/expo-37.0.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/expo-37.0.0/README.md -------------------------------------------------------------------------------- /schemas/expo-37.0.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/expo-37.0.0/index.d.ts -------------------------------------------------------------------------------- /schemas/expo-37.0.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/expo-37.0.0/package.json -------------------------------------------------------------------------------- /schemas/fabric.mod/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/fabric.mod/README.md -------------------------------------------------------------------------------- /schemas/fabric.mod/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/fabric.mod/index.d.ts -------------------------------------------------------------------------------- /schemas/fabric.mod/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/fabric.mod/package.json -------------------------------------------------------------------------------- /schemas/fantomas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/fantomas/README.md -------------------------------------------------------------------------------- /schemas/fantomas/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/fantomas/index.d.ts -------------------------------------------------------------------------------- /schemas/fantomas/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/fantomas/package.json -------------------------------------------------------------------------------- /schemas/feed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/feed/README.md -------------------------------------------------------------------------------- /schemas/feed/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/feed/index.d.ts -------------------------------------------------------------------------------- /schemas/feed/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/feed/package.json -------------------------------------------------------------------------------- /schemas/fly/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/fly/README.md -------------------------------------------------------------------------------- /schemas/fly/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/fly/index.d.ts -------------------------------------------------------------------------------- /schemas/fly/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/fly/package.json -------------------------------------------------------------------------------- /schemas/foundryvtt-manifest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/foundryvtt-manifest/README.md -------------------------------------------------------------------------------- /schemas/foundryvtt-manifest/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/foundryvtt-manifest/index.d.ts -------------------------------------------------------------------------------- /schemas/foundryvtt-manifest/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/foundryvtt-manifest/package.json -------------------------------------------------------------------------------- /schemas/foxx-manifest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/foxx-manifest/README.md -------------------------------------------------------------------------------- /schemas/foxx-manifest/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/foxx-manifest/index.d.ts -------------------------------------------------------------------------------- /schemas/foxx-manifest/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/foxx-manifest/package.json -------------------------------------------------------------------------------- /schemas/geojson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/geojson/README.md -------------------------------------------------------------------------------- /schemas/geojson/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/geojson/index.d.ts -------------------------------------------------------------------------------- /schemas/geojson/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/geojson/package.json -------------------------------------------------------------------------------- /schemas/github-action/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/github-action/README.md -------------------------------------------------------------------------------- /schemas/github-action/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/github-action/index.d.ts -------------------------------------------------------------------------------- /schemas/github-action/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/github-action/package.json -------------------------------------------------------------------------------- /schemas/github-workflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/github-workflow/README.md -------------------------------------------------------------------------------- /schemas/github-workflow/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/github-workflow/index.d.ts -------------------------------------------------------------------------------- /schemas/github-workflow/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/github-workflow/package.json -------------------------------------------------------------------------------- /schemas/gitlab-ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/gitlab-ci/README.md -------------------------------------------------------------------------------- /schemas/gitlab-ci/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/gitlab-ci/index.d.ts -------------------------------------------------------------------------------- /schemas/gitlab-ci/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/gitlab-ci/package.json -------------------------------------------------------------------------------- /schemas/global/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/global/README.md -------------------------------------------------------------------------------- /schemas/global/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/global/index.d.ts -------------------------------------------------------------------------------- /schemas/global/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/global/package.json -------------------------------------------------------------------------------- /schemas/golangci-lint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/golangci-lint/README.md -------------------------------------------------------------------------------- /schemas/golangci-lint/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/golangci-lint/index.d.ts -------------------------------------------------------------------------------- /schemas/golangci-lint/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/golangci-lint/package.json -------------------------------------------------------------------------------- /schemas/grafana-dashboard-5.x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/grafana-dashboard-5.x/README.md -------------------------------------------------------------------------------- /schemas/grafana-dashboard-5.x/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/grafana-dashboard-5.x/index.d.ts -------------------------------------------------------------------------------- /schemas/grafana-dashboard-5.x/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/grafana-dashboard-5.x/package.json -------------------------------------------------------------------------------- /schemas/graphql-mesh-0.0.16/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/graphql-mesh-0.0.16/README.md -------------------------------------------------------------------------------- /schemas/graphql-mesh-0.0.16/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/graphql-mesh-0.0.16/index.d.ts -------------------------------------------------------------------------------- /schemas/graphql-mesh-0.0.16/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/graphql-mesh-0.0.16/package.json -------------------------------------------------------------------------------- /schemas/grunt-clean-task/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/grunt-clean-task/README.md -------------------------------------------------------------------------------- /schemas/grunt-clean-task/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/grunt-clean-task/index.d.ts -------------------------------------------------------------------------------- /schemas/grunt-clean-task/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/grunt-clean-task/package.json -------------------------------------------------------------------------------- /schemas/grunt-copy-task/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/grunt-copy-task/README.md -------------------------------------------------------------------------------- /schemas/grunt-copy-task/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/grunt-copy-task/index.d.ts -------------------------------------------------------------------------------- /schemas/grunt-copy-task/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/grunt-copy-task/package.json -------------------------------------------------------------------------------- /schemas/grunt-cssmin-task/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/grunt-cssmin-task/README.md -------------------------------------------------------------------------------- /schemas/grunt-cssmin-task/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/grunt-cssmin-task/index.d.ts -------------------------------------------------------------------------------- /schemas/grunt-cssmin-task/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/grunt-cssmin-task/package.json -------------------------------------------------------------------------------- /schemas/grunt-jshint-task/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/grunt-jshint-task/README.md -------------------------------------------------------------------------------- /schemas/grunt-jshint-task/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/grunt-jshint-task/index.d.ts -------------------------------------------------------------------------------- /schemas/grunt-jshint-task/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/grunt-jshint-task/package.json -------------------------------------------------------------------------------- /schemas/grunt-task/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/grunt-task/README.md -------------------------------------------------------------------------------- /schemas/grunt-task/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/grunt-task/index.d.ts -------------------------------------------------------------------------------- /schemas/grunt-task/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/grunt-task/package.json -------------------------------------------------------------------------------- /schemas/grunt-watch-task/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/grunt-watch-task/README.md -------------------------------------------------------------------------------- /schemas/grunt-watch-task/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/grunt-watch-task/index.d.ts -------------------------------------------------------------------------------- /schemas/grunt-watch-task/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/grunt-watch-task/package.json -------------------------------------------------------------------------------- /schemas/hadolint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/hadolint/README.md -------------------------------------------------------------------------------- /schemas/hadolint/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/hadolint/index.d.ts -------------------------------------------------------------------------------- /schemas/hadolint/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/hadolint/package.json -------------------------------------------------------------------------------- /schemas/haxelib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/haxelib/README.md -------------------------------------------------------------------------------- /schemas/haxelib/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/haxelib/index.d.ts -------------------------------------------------------------------------------- /schemas/haxelib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/haxelib/package.json -------------------------------------------------------------------------------- /schemas/hemtt-0.6.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/hemtt-0.6.2/README.md -------------------------------------------------------------------------------- /schemas/hemtt-0.6.2/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/hemtt-0.6.2/index.d.ts -------------------------------------------------------------------------------- /schemas/hemtt-0.6.2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/hemtt-0.6.2/package.json -------------------------------------------------------------------------------- /schemas/host-meta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/host-meta/README.md -------------------------------------------------------------------------------- /schemas/host-meta/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/host-meta/index.d.ts -------------------------------------------------------------------------------- /schemas/host-meta/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/host-meta/package.json -------------------------------------------------------------------------------- /schemas/host/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/host/README.md -------------------------------------------------------------------------------- /schemas/host/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/host/index.d.ts -------------------------------------------------------------------------------- /schemas/host/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/host/package.json -------------------------------------------------------------------------------- /schemas/httpmockrc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/httpmockrc/README.md -------------------------------------------------------------------------------- /schemas/httpmockrc/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/httpmockrc/index.d.ts -------------------------------------------------------------------------------- /schemas/httpmockrc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/httpmockrc/package.json -------------------------------------------------------------------------------- /schemas/husky/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/husky/README.md -------------------------------------------------------------------------------- /schemas/husky/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/husky/index.d.ts -------------------------------------------------------------------------------- /schemas/husky/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/husky/package.json -------------------------------------------------------------------------------- /schemas/huskyrc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/huskyrc/README.md -------------------------------------------------------------------------------- /schemas/huskyrc/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/huskyrc/index.d.ts -------------------------------------------------------------------------------- /schemas/huskyrc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/huskyrc/package.json -------------------------------------------------------------------------------- /schemas/hws-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/hws-config/README.md -------------------------------------------------------------------------------- /schemas/hws-config/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/hws-config/index.d.ts -------------------------------------------------------------------------------- /schemas/hws-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/hws-config/package.json -------------------------------------------------------------------------------- /schemas/imageoptimizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/imageoptimizer/README.md -------------------------------------------------------------------------------- /schemas/imageoptimizer/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/imageoptimizer/index.d.ts -------------------------------------------------------------------------------- /schemas/imageoptimizer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/imageoptimizer/package.json -------------------------------------------------------------------------------- /schemas/install/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/install/README.md -------------------------------------------------------------------------------- /schemas/install/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/install/index.d.ts -------------------------------------------------------------------------------- /schemas/install/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/install/package.json -------------------------------------------------------------------------------- /schemas/jasonette/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/jasonette/README.md -------------------------------------------------------------------------------- /schemas/jasonette/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/jasonette/index.d.ts -------------------------------------------------------------------------------- /schemas/jasonette/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/jasonette/package.json -------------------------------------------------------------------------------- /schemas/jdt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/jdt/README.md -------------------------------------------------------------------------------- /schemas/jdt/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/jdt/index.d.ts -------------------------------------------------------------------------------- /schemas/jdt/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/jdt/package.json -------------------------------------------------------------------------------- /schemas/jekyll/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/jekyll/README.md -------------------------------------------------------------------------------- /schemas/jekyll/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/jekyll/index.d.ts -------------------------------------------------------------------------------- /schemas/jekyll/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/jekyll/package.json -------------------------------------------------------------------------------- /schemas/jsbeautifyrc-nested/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/jsbeautifyrc-nested/README.md -------------------------------------------------------------------------------- /schemas/jsbeautifyrc-nested/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/jsbeautifyrc-nested/index.d.ts -------------------------------------------------------------------------------- /schemas/jsbeautifyrc-nested/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/jsbeautifyrc-nested/package.json -------------------------------------------------------------------------------- /schemas/jsbeautifyrc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/jsbeautifyrc/README.md -------------------------------------------------------------------------------- /schemas/jsbeautifyrc/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/jsbeautifyrc/index.d.ts -------------------------------------------------------------------------------- /schemas/jsbeautifyrc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/jsbeautifyrc/package.json -------------------------------------------------------------------------------- /schemas/jsconfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/jsconfig/README.md -------------------------------------------------------------------------------- /schemas/jsconfig/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/jsconfig/index.d.ts -------------------------------------------------------------------------------- /schemas/jsconfig/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/jsconfig/package.json -------------------------------------------------------------------------------- /schemas/jscsrc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/jscsrc/README.md -------------------------------------------------------------------------------- /schemas/jscsrc/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/jscsrc/index.d.ts -------------------------------------------------------------------------------- /schemas/jscsrc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/jscsrc/package.json -------------------------------------------------------------------------------- /schemas/jsdoc-1.0.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/jsdoc-1.0.0/README.md -------------------------------------------------------------------------------- /schemas/jsdoc-1.0.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/jsdoc-1.0.0/index.d.ts -------------------------------------------------------------------------------- /schemas/jsdoc-1.0.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/jsdoc-1.0.0/package.json -------------------------------------------------------------------------------- /schemas/jshintrc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/jshintrc/README.md -------------------------------------------------------------------------------- /schemas/jshintrc/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/jshintrc/index.d.ts -------------------------------------------------------------------------------- /schemas/jshintrc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/jshintrc/package.json -------------------------------------------------------------------------------- /schemas/jsinspectrc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/jsinspectrc/README.md -------------------------------------------------------------------------------- /schemas/jsinspectrc/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/jsinspectrc/index.d.ts -------------------------------------------------------------------------------- /schemas/jsinspectrc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/jsinspectrc/package.json -------------------------------------------------------------------------------- /schemas/json-api-1.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/json-api-1.0/README.md -------------------------------------------------------------------------------- /schemas/json-api-1.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/json-api-1.0/index.d.ts -------------------------------------------------------------------------------- /schemas/json-api-1.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/json-api-1.0/package.json -------------------------------------------------------------------------------- /schemas/json-patch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/json-patch/README.md -------------------------------------------------------------------------------- /schemas/json-patch/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/json-patch/index.d.ts -------------------------------------------------------------------------------- /schemas/json-patch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/json-patch/package.json -------------------------------------------------------------------------------- /schemas/json-schemas.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/json-schemas.lock -------------------------------------------------------------------------------- /schemas/jsonld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/jsonld/README.md -------------------------------------------------------------------------------- /schemas/jsonld/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/jsonld/index.d.ts -------------------------------------------------------------------------------- /schemas/jsonld/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/jsonld/package.json -------------------------------------------------------------------------------- /schemas/kode-ci-build-1.0.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/kode-ci-build-1.0.0/README.md -------------------------------------------------------------------------------- /schemas/kode-ci-build-1.0.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/kode-ci-build-1.0.0/index.d.ts -------------------------------------------------------------------------------- /schemas/kode-ci-build-1.0.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/kode-ci-build-1.0.0/package.json -------------------------------------------------------------------------------- /schemas/kong_json_schema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/kong_json_schema/README.md -------------------------------------------------------------------------------- /schemas/kong_json_schema/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/kong_json_schema/index.d.ts -------------------------------------------------------------------------------- /schemas/kong_json_schema/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/kong_json_schema/package.json -------------------------------------------------------------------------------- /schemas/ksp-avc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ksp-avc/README.md -------------------------------------------------------------------------------- /schemas/ksp-avc/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ksp-avc/index.d.ts -------------------------------------------------------------------------------- /schemas/ksp-avc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ksp-avc/package.json -------------------------------------------------------------------------------- /schemas/ksp-ckan-1.16/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ksp-ckan-1.16/README.md -------------------------------------------------------------------------------- /schemas/ksp-ckan-1.16/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ksp-ckan-1.16/index.d.ts -------------------------------------------------------------------------------- /schemas/ksp-ckan-1.16/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ksp-ckan-1.16/package.json -------------------------------------------------------------------------------- /schemas/ksp-ckan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ksp-ckan/README.md -------------------------------------------------------------------------------- /schemas/ksp-ckan/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ksp-ckan/index.d.ts -------------------------------------------------------------------------------- /schemas/ksp-ckan/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ksp-ckan/package.json -------------------------------------------------------------------------------- /schemas/launchsettings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/launchsettings/README.md -------------------------------------------------------------------------------- /schemas/launchsettings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/launchsettings/index.d.ts -------------------------------------------------------------------------------- /schemas/launchsettings/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/launchsettings/package.json -------------------------------------------------------------------------------- /schemas/lerna/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/lerna/README.md -------------------------------------------------------------------------------- /schemas/lerna/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/lerna/index.d.ts -------------------------------------------------------------------------------- /schemas/lerna/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/lerna/package.json -------------------------------------------------------------------------------- /schemas/libman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/libman/README.md -------------------------------------------------------------------------------- /schemas/libman/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/libman/index.d.ts -------------------------------------------------------------------------------- /schemas/libman/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/libman/package.json -------------------------------------------------------------------------------- /schemas/licenses.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/licenses.1/README.md -------------------------------------------------------------------------------- /schemas/licenses.1/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/licenses.1/index.d.ts -------------------------------------------------------------------------------- /schemas/licenses.1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/licenses.1/package.json -------------------------------------------------------------------------------- /schemas/lintstagedrc.schema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/lintstagedrc.schema/README.md -------------------------------------------------------------------------------- /schemas/lintstagedrc.schema/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/lintstagedrc.schema/index.d.ts -------------------------------------------------------------------------------- /schemas/lintstagedrc.schema/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/lintstagedrc.schema/package.json -------------------------------------------------------------------------------- /schemas/liquibase-3.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/liquibase-3.2/README.md -------------------------------------------------------------------------------- /schemas/liquibase-3.2/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/liquibase-3.2/index.d.ts -------------------------------------------------------------------------------- /schemas/liquibase-3.2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/liquibase-3.2/package.json -------------------------------------------------------------------------------- /schemas/lsdlschema-0.7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/lsdlschema-0.7/README.md -------------------------------------------------------------------------------- /schemas/lsdlschema-0.7/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/lsdlschema-0.7/index.d.ts -------------------------------------------------------------------------------- /schemas/lsdlschema-0.7/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/lsdlschema-0.7/package.json -------------------------------------------------------------------------------- /schemas/lsdlschema-1.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/lsdlschema-1.0/README.md -------------------------------------------------------------------------------- /schemas/lsdlschema-1.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/lsdlschema-1.0/index.d.ts -------------------------------------------------------------------------------- /schemas/lsdlschema-1.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/lsdlschema-1.0/package.json -------------------------------------------------------------------------------- /schemas/lsdlschema-2.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/lsdlschema-2.0/README.md -------------------------------------------------------------------------------- /schemas/lsdlschema-2.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/lsdlschema-2.0/index.d.ts -------------------------------------------------------------------------------- /schemas/lsdlschema-2.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/lsdlschema-2.0/package.json -------------------------------------------------------------------------------- /schemas/lsdlschema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/lsdlschema/README.md -------------------------------------------------------------------------------- /schemas/lsdlschema/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/lsdlschema/index.d.ts -------------------------------------------------------------------------------- /schemas/lsdlschema/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/lsdlschema/package.json -------------------------------------------------------------------------------- /schemas/mimetypes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/mimetypes/README.md -------------------------------------------------------------------------------- /schemas/mimetypes/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/mimetypes/index.d.ts -------------------------------------------------------------------------------- /schemas/mimetypes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/mimetypes/package.json -------------------------------------------------------------------------------- /schemas/minecraft-advancement/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/minecraft-advancement/README.md -------------------------------------------------------------------------------- /schemas/minecraft-advancement/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/minecraft-advancement/index.d.ts -------------------------------------------------------------------------------- /schemas/minecraft-advancement/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/minecraft-advancement/package.json -------------------------------------------------------------------------------- /schemas/monika-config-schema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/monika-config-schema/README.md -------------------------------------------------------------------------------- /schemas/monika-config-schema/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/monika-config-schema/index.d.ts -------------------------------------------------------------------------------- /schemas/monika-config-schema/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/monika-config-schema/package.json -------------------------------------------------------------------------------- /schemas/mta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/mta/README.md -------------------------------------------------------------------------------- /schemas/mta/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/mta/index.d.ts -------------------------------------------------------------------------------- /schemas/mta/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/mta/package.json -------------------------------------------------------------------------------- /schemas/mtad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/mtad/README.md -------------------------------------------------------------------------------- /schemas/mtad/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/mtad/index.d.ts -------------------------------------------------------------------------------- /schemas/mtad/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/mtad/package.json -------------------------------------------------------------------------------- /schemas/mtaext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/mtaext/README.md -------------------------------------------------------------------------------- /schemas/mtaext/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/mtaext/index.d.ts -------------------------------------------------------------------------------- /schemas/mtaext/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/mtaext/package.json -------------------------------------------------------------------------------- /schemas/mycode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/mycode/README.md -------------------------------------------------------------------------------- /schemas/mycode/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/mycode/index.d.ts -------------------------------------------------------------------------------- /schemas/mycode/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/mycode/package.json -------------------------------------------------------------------------------- /schemas/neoload/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/neoload/README.md -------------------------------------------------------------------------------- /schemas/neoload/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/neoload/index.d.ts -------------------------------------------------------------------------------- /schemas/neoload/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/neoload/package.json -------------------------------------------------------------------------------- /schemas/nest-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/nest-cli/README.md -------------------------------------------------------------------------------- /schemas/nest-cli/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/nest-cli/index.d.ts -------------------------------------------------------------------------------- /schemas/nest-cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/nest-cli/package.json -------------------------------------------------------------------------------- /schemas/ninjs-1.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ninjs-1.0/README.md -------------------------------------------------------------------------------- /schemas/ninjs-1.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ninjs-1.0/index.d.ts -------------------------------------------------------------------------------- /schemas/ninjs-1.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ninjs-1.0/package.json -------------------------------------------------------------------------------- /schemas/ninjs-1.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ninjs-1.1/README.md -------------------------------------------------------------------------------- /schemas/ninjs-1.1/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ninjs-1.1/index.d.ts -------------------------------------------------------------------------------- /schemas/ninjs-1.1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ninjs-1.1/package.json -------------------------------------------------------------------------------- /schemas/ninjs-1.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ninjs-1.2/README.md -------------------------------------------------------------------------------- /schemas/ninjs-1.2/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ninjs-1.2/index.d.ts -------------------------------------------------------------------------------- /schemas/ninjs-1.2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ninjs-1.2/package.json -------------------------------------------------------------------------------- /schemas/ninjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ninjs/README.md -------------------------------------------------------------------------------- /schemas/ninjs/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ninjs/index.d.ts -------------------------------------------------------------------------------- /schemas/ninjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ninjs/package.json -------------------------------------------------------------------------------- /schemas/nlu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/nlu/README.md -------------------------------------------------------------------------------- /schemas/nlu/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/nlu/index.d.ts -------------------------------------------------------------------------------- /schemas/nlu/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/nlu/package.json -------------------------------------------------------------------------------- /schemas/nodehawkrc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/nodehawkrc/README.md -------------------------------------------------------------------------------- /schemas/nodehawkrc/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/nodehawkrc/index.d.ts -------------------------------------------------------------------------------- /schemas/nodehawkrc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/nodehawkrc/package.json -------------------------------------------------------------------------------- /schemas/nodemon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/nodemon/README.md -------------------------------------------------------------------------------- /schemas/nodemon/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/nodemon/index.d.ts -------------------------------------------------------------------------------- /schemas/nodemon/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/nodemon/package.json -------------------------------------------------------------------------------- /schemas/now/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/now/README.md -------------------------------------------------------------------------------- /schemas/now/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/now/index.d.ts -------------------------------------------------------------------------------- /schemas/now/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/now/package.json -------------------------------------------------------------------------------- /schemas/npm-link-up/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/npm-link-up/README.md -------------------------------------------------------------------------------- /schemas/npm-link-up/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/npm-link-up/index.d.ts -------------------------------------------------------------------------------- /schemas/npm-link-up/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/npm-link-up/package.json -------------------------------------------------------------------------------- /schemas/npmpackagejsonlintrc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/npmpackagejsonlintrc/README.md -------------------------------------------------------------------------------- /schemas/npmpackagejsonlintrc/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/npmpackagejsonlintrc/index.d.ts -------------------------------------------------------------------------------- /schemas/npmpackagejsonlintrc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/npmpackagejsonlintrc/package.json -------------------------------------------------------------------------------- /schemas/nswag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/nswag/README.md -------------------------------------------------------------------------------- /schemas/nswag/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/nswag/index.d.ts -------------------------------------------------------------------------------- /schemas/nswag/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/nswag/package.json -------------------------------------------------------------------------------- /schemas/nuget-project-3.3.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/nuget-project-3.3.0/README.md -------------------------------------------------------------------------------- /schemas/nuget-project-3.3.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/nuget-project-3.3.0/index.d.ts -------------------------------------------------------------------------------- /schemas/nuget-project-3.3.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/nuget-project-3.3.0/package.json -------------------------------------------------------------------------------- /schemas/nuget-project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/nuget-project/README.md -------------------------------------------------------------------------------- /schemas/nuget-project/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/nuget-project/index.d.ts -------------------------------------------------------------------------------- /schemas/nuget-project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/nuget-project/package.json -------------------------------------------------------------------------------- /schemas/ocelot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ocelot/README.md -------------------------------------------------------------------------------- /schemas/ocelot/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ocelot/index.d.ts -------------------------------------------------------------------------------- /schemas/ocelot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ocelot/package.json -------------------------------------------------------------------------------- /schemas/omnisharp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/omnisharp/README.md -------------------------------------------------------------------------------- /schemas/omnisharp/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/omnisharp/index.d.ts -------------------------------------------------------------------------------- /schemas/omnisharp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/omnisharp/package.json -------------------------------------------------------------------------------- /schemas/openfin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/openfin/README.md -------------------------------------------------------------------------------- /schemas/openfin/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/openfin/index.d.ts -------------------------------------------------------------------------------- /schemas/openfin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/openfin/package.json -------------------------------------------------------------------------------- /schemas/opspec-io-0.1.7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/opspec-io-0.1.7/README.md -------------------------------------------------------------------------------- /schemas/opspec-io-0.1.7/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/opspec-io-0.1.7/index.d.ts -------------------------------------------------------------------------------- /schemas/opspec-io-0.1.7/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/opspec-io-0.1.7/package.json -------------------------------------------------------------------------------- /schemas/package.manifest-7.0.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/package.manifest-7.0.0/README.md -------------------------------------------------------------------------------- /schemas/package.manifest-7.0.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/package.manifest-7.0.0/index.d.ts -------------------------------------------------------------------------------- /schemas/package.manifest-7.0.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/package.manifest-7.0.0/package.json -------------------------------------------------------------------------------- /schemas/package.manifest-8.0.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/package.manifest-8.0.0/README.md -------------------------------------------------------------------------------- /schemas/package.manifest-8.0.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/package.manifest-8.0.0/index.d.ts -------------------------------------------------------------------------------- /schemas/package.manifest-8.0.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/package.manifest-8.0.0/package.json -------------------------------------------------------------------------------- /schemas/package.manifest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/package.manifest/README.md -------------------------------------------------------------------------------- /schemas/package.manifest/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/package.manifest/index.d.ts -------------------------------------------------------------------------------- /schemas/package.manifest/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/package.manifest/package.json -------------------------------------------------------------------------------- /schemas/package/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/package/README.md -------------------------------------------------------------------------------- /schemas/package/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/package/index.d.ts -------------------------------------------------------------------------------- /schemas/package/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/package/package.json -------------------------------------------------------------------------------- /schemas/pattern/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/pattern/README.md -------------------------------------------------------------------------------- /schemas/pattern/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/pattern/index.d.ts -------------------------------------------------------------------------------- /schemas/pattern/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/pattern/package.json -------------------------------------------------------------------------------- /schemas/phraseapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/phraseapp/README.md -------------------------------------------------------------------------------- /schemas/phraseapp/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/phraseapp/index.d.ts -------------------------------------------------------------------------------- /schemas/phraseapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/phraseapp/package.json -------------------------------------------------------------------------------- /schemas/pre-commit-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/pre-commit-config/README.md -------------------------------------------------------------------------------- /schemas/pre-commit-config/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/pre-commit-config/index.d.ts -------------------------------------------------------------------------------- /schemas/pre-commit-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/pre-commit-config/package.json -------------------------------------------------------------------------------- /schemas/pre-commit-hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/pre-commit-hooks/README.md -------------------------------------------------------------------------------- /schemas/pre-commit-hooks/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/pre-commit-hooks/index.d.ts -------------------------------------------------------------------------------- /schemas/pre-commit-hooks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/pre-commit-hooks/package.json -------------------------------------------------------------------------------- /schemas/prettierrc-1.8.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/prettierrc-1.8.2/README.md -------------------------------------------------------------------------------- /schemas/prettierrc-1.8.2/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/prettierrc-1.8.2/index.d.ts -------------------------------------------------------------------------------- /schemas/prettierrc-1.8.2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/prettierrc-1.8.2/package.json -------------------------------------------------------------------------------- /schemas/prettierrc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/prettierrc/README.md -------------------------------------------------------------------------------- /schemas/prettierrc/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/prettierrc/index.d.ts -------------------------------------------------------------------------------- /schemas/prettierrc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/prettierrc/package.json -------------------------------------------------------------------------------- /schemas/prisma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/prisma/README.md -------------------------------------------------------------------------------- /schemas/prisma/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/prisma/index.d.ts -------------------------------------------------------------------------------- /schemas/prisma/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/prisma/package.json -------------------------------------------------------------------------------- /schemas/project-1.0.0-beta3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/project-1.0.0-beta3/README.md -------------------------------------------------------------------------------- /schemas/project-1.0.0-beta3/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/project-1.0.0-beta3/index.d.ts -------------------------------------------------------------------------------- /schemas/project-1.0.0-beta3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/project-1.0.0-beta3/package.json -------------------------------------------------------------------------------- /schemas/project-1.0.0-beta4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/project-1.0.0-beta4/README.md -------------------------------------------------------------------------------- /schemas/project-1.0.0-beta4/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/project-1.0.0-beta4/index.d.ts -------------------------------------------------------------------------------- /schemas/project-1.0.0-beta4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/project-1.0.0-beta4/package.json -------------------------------------------------------------------------------- /schemas/project-1.0.0-beta5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/project-1.0.0-beta5/README.md -------------------------------------------------------------------------------- /schemas/project-1.0.0-beta5/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/project-1.0.0-beta5/index.d.ts -------------------------------------------------------------------------------- /schemas/project-1.0.0-beta5/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/project-1.0.0-beta5/package.json -------------------------------------------------------------------------------- /schemas/project-1.0.0-beta6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/project-1.0.0-beta6/README.md -------------------------------------------------------------------------------- /schemas/project-1.0.0-beta6/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/project-1.0.0-beta6/index.d.ts -------------------------------------------------------------------------------- /schemas/project-1.0.0-beta6/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/project-1.0.0-beta6/package.json -------------------------------------------------------------------------------- /schemas/project-1.0.0-beta8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/project-1.0.0-beta8/README.md -------------------------------------------------------------------------------- /schemas/project-1.0.0-beta8/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/project-1.0.0-beta8/index.d.ts -------------------------------------------------------------------------------- /schemas/project-1.0.0-beta8/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/project-1.0.0-beta8/package.json -------------------------------------------------------------------------------- /schemas/project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/project/README.md -------------------------------------------------------------------------------- /schemas/project/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/project/index.d.ts -------------------------------------------------------------------------------- /schemas/project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/project/package.json -------------------------------------------------------------------------------- /schemas/prometheus.rules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/prometheus.rules/README.md -------------------------------------------------------------------------------- /schemas/prometheus.rules/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/prometheus.rules/index.d.ts -------------------------------------------------------------------------------- /schemas/prometheus.rules/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/prometheus.rules/package.json -------------------------------------------------------------------------------- /schemas/prometheus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/prometheus/README.md -------------------------------------------------------------------------------- /schemas/prometheus/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/prometheus/index.d.ts -------------------------------------------------------------------------------- /schemas/prometheus/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/prometheus/package.json -------------------------------------------------------------------------------- /schemas/pubspec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/pubspec/README.md -------------------------------------------------------------------------------- /schemas/pubspec/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/pubspec/index.d.ts -------------------------------------------------------------------------------- /schemas/pubspec/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/pubspec/package.json -------------------------------------------------------------------------------- /schemas/pyproject/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/pyproject/README.md -------------------------------------------------------------------------------- /schemas/pyproject/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/pyproject/index.d.ts -------------------------------------------------------------------------------- /schemas/pyproject/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/pyproject/package.json -------------------------------------------------------------------------------- /schemas/pyrseas-0.8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/pyrseas-0.8/README.md -------------------------------------------------------------------------------- /schemas/pyrseas-0.8/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/pyrseas-0.8/index.d.ts -------------------------------------------------------------------------------- /schemas/pyrseas-0.8/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/pyrseas-0.8/package.json -------------------------------------------------------------------------------- /schemas/qodana-1.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/qodana-1.0/README.md -------------------------------------------------------------------------------- /schemas/qodana-1.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/qodana-1.0/index.d.ts -------------------------------------------------------------------------------- /schemas/qodana-1.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/qodana-1.0/package.json -------------------------------------------------------------------------------- /schemas/renovate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/renovate/README.md -------------------------------------------------------------------------------- /schemas/renovate/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/renovate/index.d.ts -------------------------------------------------------------------------------- /schemas/renovate/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/renovate/package.json -------------------------------------------------------------------------------- /schemas/resjson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/resjson/README.md -------------------------------------------------------------------------------- /schemas/resjson/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/resjson/index.d.ts -------------------------------------------------------------------------------- /schemas/resjson/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/resjson/package.json -------------------------------------------------------------------------------- /schemas/resume/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/resume/README.md -------------------------------------------------------------------------------- /schemas/resume/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/resume/index.d.ts -------------------------------------------------------------------------------- /schemas/resume/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/resume/package.json -------------------------------------------------------------------------------- /schemas/rust-toolchain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/rust-toolchain/README.md -------------------------------------------------------------------------------- /schemas/rust-toolchain/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/rust-toolchain/index.d.ts -------------------------------------------------------------------------------- /schemas/rust-toolchain/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/rust-toolchain/package.json -------------------------------------------------------------------------------- /schemas/sarif-1.0.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/sarif-1.0.0/README.md -------------------------------------------------------------------------------- /schemas/sarif-1.0.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/sarif-1.0.0/index.d.ts -------------------------------------------------------------------------------- /schemas/sarif-1.0.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/sarif-1.0.0/package.json -------------------------------------------------------------------------------- /schemas/sarif-2.0.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/sarif-2.0.0/README.md -------------------------------------------------------------------------------- /schemas/sarif-2.0.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/sarif-2.0.0/index.d.ts -------------------------------------------------------------------------------- /schemas/sarif-2.0.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/sarif-2.0.0/package.json -------------------------------------------------------------------------------- /schemas/sarif-2.1.0-rtm.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/sarif-2.1.0-rtm.0/README.md -------------------------------------------------------------------------------- /schemas/sarif-2.1.0-rtm.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/sarif-2.1.0-rtm.0/index.d.ts -------------------------------------------------------------------------------- /schemas/sarif-2.1.0-rtm.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/sarif-2.1.0-rtm.0/package.json -------------------------------------------------------------------------------- /schemas/sarif-2.1.0-rtm.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/sarif-2.1.0-rtm.1/README.md -------------------------------------------------------------------------------- /schemas/sarif-2.1.0-rtm.1/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/sarif-2.1.0-rtm.1/index.d.ts -------------------------------------------------------------------------------- /schemas/sarif-2.1.0-rtm.1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/sarif-2.1.0-rtm.1/package.json -------------------------------------------------------------------------------- /schemas/sarif-2.1.0-rtm.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/sarif-2.1.0-rtm.2/README.md -------------------------------------------------------------------------------- /schemas/sarif-2.1.0-rtm.2/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/sarif-2.1.0-rtm.2/index.d.ts -------------------------------------------------------------------------------- /schemas/sarif-2.1.0-rtm.2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/sarif-2.1.0-rtm.2/package.json -------------------------------------------------------------------------------- /schemas/sarif-2.1.0-rtm.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/sarif-2.1.0-rtm.3/README.md -------------------------------------------------------------------------------- /schemas/sarif-2.1.0-rtm.3/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/sarif-2.1.0-rtm.3/index.d.ts -------------------------------------------------------------------------------- /schemas/sarif-2.1.0-rtm.3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/sarif-2.1.0-rtm.3/package.json -------------------------------------------------------------------------------- /schemas/sarif-2.1.0-rtm.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/sarif-2.1.0-rtm.4/README.md -------------------------------------------------------------------------------- /schemas/sarif-2.1.0-rtm.4/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/sarif-2.1.0-rtm.4/index.d.ts -------------------------------------------------------------------------------- /schemas/sarif-2.1.0-rtm.4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/sarif-2.1.0-rtm.4/package.json -------------------------------------------------------------------------------- /schemas/sarif-2.1.0-rtm.5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/sarif-2.1.0-rtm.5/README.md -------------------------------------------------------------------------------- /schemas/sarif-2.1.0-rtm.5/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/sarif-2.1.0-rtm.5/index.d.ts -------------------------------------------------------------------------------- /schemas/sarif-2.1.0-rtm.5/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/sarif-2.1.0-rtm.5/package.json -------------------------------------------------------------------------------- /schemas/sarif/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/sarif/README.md -------------------------------------------------------------------------------- /schemas/sarif/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/sarif/index.d.ts -------------------------------------------------------------------------------- /schemas/sarif/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/sarif/package.json -------------------------------------------------------------------------------- /schemas/schema-catalog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/schema-catalog/README.md -------------------------------------------------------------------------------- /schemas/schema-catalog/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/schema-catalog/index.d.ts -------------------------------------------------------------------------------- /schemas/schema-catalog/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/schema-catalog/package.json -------------------------------------------------------------------------------- /schemas/schema-draft-v4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/schema-draft-v4/README.md -------------------------------------------------------------------------------- /schemas/schema-draft-v4/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/schema-draft-v4/index.d.ts -------------------------------------------------------------------------------- /schemas/schema-draft-v4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/schema-draft-v4/package.json -------------------------------------------------------------------------------- /schemas/settings.job/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/settings.job/README.md -------------------------------------------------------------------------------- /schemas/settings.job/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/settings.job/index.d.ts -------------------------------------------------------------------------------- /schemas/settings.job/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/settings.job/package.json -------------------------------------------------------------------------------- /schemas/solidarityschema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/solidarityschema/README.md -------------------------------------------------------------------------------- /schemas/solidarityschema/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/solidarityschema/index.d.ts -------------------------------------------------------------------------------- /schemas/solidarityschema/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/solidarityschema/package.json -------------------------------------------------------------------------------- /schemas/sourcehut-build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/sourcehut-build/README.md -------------------------------------------------------------------------------- /schemas/sourcehut-build/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/sourcehut-build/index.d.ts -------------------------------------------------------------------------------- /schemas/sourcehut-build/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/sourcehut-build/package.json -------------------------------------------------------------------------------- /schemas/sourcemap-v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/sourcemap-v3/README.md -------------------------------------------------------------------------------- /schemas/sourcemap-v3/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/sourcemap-v3/index.d.ts -------------------------------------------------------------------------------- /schemas/sourcemap-v3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/sourcemap-v3/package.json -------------------------------------------------------------------------------- /schemas/sprite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/sprite/README.md -------------------------------------------------------------------------------- /schemas/sprite/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/sprite/index.d.ts -------------------------------------------------------------------------------- /schemas/sprite/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/sprite/package.json -------------------------------------------------------------------------------- /schemas/staticwebapp.config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/staticwebapp.config/README.md -------------------------------------------------------------------------------- /schemas/staticwebapp.config/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/staticwebapp.config/index.d.ts -------------------------------------------------------------------------------- /schemas/staticwebapp.config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/staticwebapp.config/package.json -------------------------------------------------------------------------------- /schemas/stylelintrc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/stylelintrc/README.md -------------------------------------------------------------------------------- /schemas/stylelintrc/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/stylelintrc/index.d.ts -------------------------------------------------------------------------------- /schemas/stylelintrc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/stylelintrc/package.json -------------------------------------------------------------------------------- /schemas/stylintrc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/stylintrc/README.md -------------------------------------------------------------------------------- /schemas/stylintrc/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/stylintrc/index.d.ts -------------------------------------------------------------------------------- /schemas/stylintrc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/stylintrc/package.json -------------------------------------------------------------------------------- /schemas/swagger-2.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/swagger-2.0/README.md -------------------------------------------------------------------------------- /schemas/swagger-2.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/swagger-2.0/index.d.ts -------------------------------------------------------------------------------- /schemas/swagger-2.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/swagger-2.0/package.json -------------------------------------------------------------------------------- /schemas/swcrc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/swcrc/README.md -------------------------------------------------------------------------------- /schemas/swcrc/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/swcrc/index.d.ts -------------------------------------------------------------------------------- /schemas/swcrc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/swcrc/package.json -------------------------------------------------------------------------------- /schemas/taskfile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/taskfile/README.md -------------------------------------------------------------------------------- /schemas/taskfile/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/taskfile/index.d.ts -------------------------------------------------------------------------------- /schemas/taskfile/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/taskfile/package.json -------------------------------------------------------------------------------- /schemas/template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/template/README.md -------------------------------------------------------------------------------- /schemas/template/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/template/index.d.ts -------------------------------------------------------------------------------- /schemas/template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/template/package.json -------------------------------------------------------------------------------- /schemas/traefik-v2-file-provider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/traefik-v2-file-provider/README.md -------------------------------------------------------------------------------- /schemas/traefik-v2-file-provider/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/traefik-v2-file-provider/index.d.ts -------------------------------------------------------------------------------- /schemas/traefik-v2-file-provider/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/traefik-v2-file-provider/package.json -------------------------------------------------------------------------------- /schemas/traefik-v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/traefik-v2/README.md -------------------------------------------------------------------------------- /schemas/traefik-v2/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/traefik-v2/index.d.ts -------------------------------------------------------------------------------- /schemas/traefik-v2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/traefik-v2/package.json -------------------------------------------------------------------------------- /schemas/travis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/travis/README.md -------------------------------------------------------------------------------- /schemas/travis/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/travis/index.d.ts -------------------------------------------------------------------------------- /schemas/travis/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/travis/package.json -------------------------------------------------------------------------------- /schemas/ts-force-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ts-force-config/README.md -------------------------------------------------------------------------------- /schemas/ts-force-config/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ts-force-config/index.d.ts -------------------------------------------------------------------------------- /schemas/ts-force-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/ts-force-config/package.json -------------------------------------------------------------------------------- /schemas/tsconfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/tsconfig/README.md -------------------------------------------------------------------------------- /schemas/tsconfig/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/tsconfig/index.d.ts -------------------------------------------------------------------------------- /schemas/tsconfig/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/tsconfig/package.json -------------------------------------------------------------------------------- /schemas/tsd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/tsd/README.md -------------------------------------------------------------------------------- /schemas/tsd/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/tsd/index.d.ts -------------------------------------------------------------------------------- /schemas/tsd/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/tsd/package.json -------------------------------------------------------------------------------- /schemas/tsdrc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/tsdrc/README.md -------------------------------------------------------------------------------- /schemas/tsdrc/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/tsdrc/index.d.ts -------------------------------------------------------------------------------- /schemas/tsdrc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/tsdrc/package.json -------------------------------------------------------------------------------- /schemas/tslint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/tslint/README.md -------------------------------------------------------------------------------- /schemas/tslint/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/tslint/index.d.ts -------------------------------------------------------------------------------- /schemas/tslint/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/tslint/package.json -------------------------------------------------------------------------------- /schemas/typedoc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/typedoc/README.md -------------------------------------------------------------------------------- /schemas/typedoc/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/typedoc/index.d.ts -------------------------------------------------------------------------------- /schemas/typedoc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/typedoc/package.json -------------------------------------------------------------------------------- /schemas/typewiz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/typewiz/README.md -------------------------------------------------------------------------------- /schemas/typewiz/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/typewiz/index.d.ts -------------------------------------------------------------------------------- /schemas/typewiz/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/typewiz/package.json -------------------------------------------------------------------------------- /schemas/up/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/up/README.md -------------------------------------------------------------------------------- /schemas/up/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/up/index.d.ts -------------------------------------------------------------------------------- /schemas/up/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/up/package.json -------------------------------------------------------------------------------- /schemas/vim-addon-info/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/vim-addon-info/README.md -------------------------------------------------------------------------------- /schemas/vim-addon-info/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/vim-addon-info/index.d.ts -------------------------------------------------------------------------------- /schemas/vim-addon-info/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/vim-addon-info/package.json -------------------------------------------------------------------------------- /schemas/vs-2017.3.host/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/vs-2017.3.host/README.md -------------------------------------------------------------------------------- /schemas/vs-2017.3.host/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/vs-2017.3.host/index.d.ts -------------------------------------------------------------------------------- /schemas/vs-2017.3.host/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/vs-2017.3.host/package.json -------------------------------------------------------------------------------- /schemas/vs-nesting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/vs-nesting/README.md -------------------------------------------------------------------------------- /schemas/vs-nesting/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/vs-nesting/index.d.ts -------------------------------------------------------------------------------- /schemas/vs-nesting/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/vs-nesting/package.json -------------------------------------------------------------------------------- /schemas/vsconfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/vsconfig/README.md -------------------------------------------------------------------------------- /schemas/vsconfig/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/vsconfig/index.d.ts -------------------------------------------------------------------------------- /schemas/vsconfig/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/vsconfig/package.json -------------------------------------------------------------------------------- /schemas/vsext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/vsext/README.md -------------------------------------------------------------------------------- /schemas/vsext/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/vsext/index.d.ts -------------------------------------------------------------------------------- /schemas/vsext/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/vsext/package.json -------------------------------------------------------------------------------- /schemas/vsix-manifestinjection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/vsix-manifestinjection/README.md -------------------------------------------------------------------------------- /schemas/vsix-manifestinjection/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/vsix-manifestinjection/index.d.ts -------------------------------------------------------------------------------- /schemas/vsix-manifestinjection/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/vsix-manifestinjection/package.json -------------------------------------------------------------------------------- /schemas/vsix-publish/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/vsix-publish/README.md -------------------------------------------------------------------------------- /schemas/vsix-publish/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/vsix-publish/index.d.ts -------------------------------------------------------------------------------- /schemas/vsix-publish/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/vsix-publish/package.json -------------------------------------------------------------------------------- /schemas/vsls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/vsls/README.md -------------------------------------------------------------------------------- /schemas/vsls/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/vsls/index.d.ts -------------------------------------------------------------------------------- /schemas/vsls/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/vsls/package.json -------------------------------------------------------------------------------- /schemas/web-manifest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/web-manifest/README.md -------------------------------------------------------------------------------- /schemas/web-manifest/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/web-manifest/index.d.ts -------------------------------------------------------------------------------- /schemas/web-manifest/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/web-manifest/package.json -------------------------------------------------------------------------------- /schemas/web-types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/web-types/README.md -------------------------------------------------------------------------------- /schemas/web-types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/web-types/index.d.ts -------------------------------------------------------------------------------- /schemas/web-types/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/web-types/package.json -------------------------------------------------------------------------------- /schemas/webextension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/webextension/README.md -------------------------------------------------------------------------------- /schemas/webextension/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/webextension/index.d.ts -------------------------------------------------------------------------------- /schemas/webextension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/webextension/package.json -------------------------------------------------------------------------------- /schemas/webjob-publish-settings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/webjob-publish-settings/README.md -------------------------------------------------------------------------------- /schemas/webjob-publish-settings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/webjob-publish-settings/index.d.ts -------------------------------------------------------------------------------- /schemas/webjob-publish-settings/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/webjob-publish-settings/package.json -------------------------------------------------------------------------------- /schemas/webjobs-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/webjobs-list/README.md -------------------------------------------------------------------------------- /schemas/webjobs-list/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/webjobs-list/index.d.ts -------------------------------------------------------------------------------- /schemas/webjobs-list/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/webjobs-list/package.json -------------------------------------------------------------------------------- /schemas/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/workflows/README.md -------------------------------------------------------------------------------- /schemas/workflows/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/workflows/index.d.ts -------------------------------------------------------------------------------- /schemas/workflows/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/workflows/package.json -------------------------------------------------------------------------------- /schemas/xunit.runner.schema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/xunit.runner.schema/README.md -------------------------------------------------------------------------------- /schemas/xunit.runner.schema/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/xunit.runner.schema/index.d.ts -------------------------------------------------------------------------------- /schemas/xunit.runner.schema/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/schemas/xunit.runner.schema/package.json -------------------------------------------------------------------------------- /settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/settings.json -------------------------------------------------------------------------------- /src/SchemaGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/src/SchemaGenerator.ts -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/src/cli.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/src/interfaces.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.schemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/tsconfig.schemas.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffflorian/schemastore-updater/HEAD/yarn.lock --------------------------------------------------------------------------------