├── .env.example ├── .github └── workflows │ ├── lint-pr.yml │ ├── release.yml │ └── tests.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.js ├── .releaserc.json ├── LICENSE ├── README.md ├── contrib └── generate.ts ├── package.json ├── pnpm-lock.yaml ├── src ├── index.test.ts ├── index.ts └── schemas │ ├── v1.16.json │ ├── v1.17.json │ ├── v1.18.json │ ├── v1.19.json │ ├── v1.20.json │ ├── v1.21.json │ ├── v1.22.json │ └── v1.23.json ├── tsconfig.json └── vite.config.ts /.env.example: -------------------------------------------------------------------------------- 1 | TEST_GITEA_TOKEN= 2 | -------------------------------------------------------------------------------- /.github/workflows/lint-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbraten/gitea-js/HEAD/.github/workflows/lint-pr.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbraten/gitea-js/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbraten/gitea-js/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbraten/gitea-js/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbraten/gitea-js/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbraten/gitea-js/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.releaserc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@geprog/semantic-release-config" 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbraten/gitea-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbraten/gitea-js/HEAD/README.md -------------------------------------------------------------------------------- /contrib/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbraten/gitea-js/HEAD/contrib/generate.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbraten/gitea-js/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbraten/gitea-js/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbraten/gitea-js/HEAD/src/index.test.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbraten/gitea-js/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/schemas/v1.16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbraten/gitea-js/HEAD/src/schemas/v1.16.json -------------------------------------------------------------------------------- /src/schemas/v1.17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbraten/gitea-js/HEAD/src/schemas/v1.17.json -------------------------------------------------------------------------------- /src/schemas/v1.18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbraten/gitea-js/HEAD/src/schemas/v1.18.json -------------------------------------------------------------------------------- /src/schemas/v1.19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbraten/gitea-js/HEAD/src/schemas/v1.19.json -------------------------------------------------------------------------------- /src/schemas/v1.20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbraten/gitea-js/HEAD/src/schemas/v1.20.json -------------------------------------------------------------------------------- /src/schemas/v1.21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbraten/gitea-js/HEAD/src/schemas/v1.21.json -------------------------------------------------------------------------------- /src/schemas/v1.22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbraten/gitea-js/HEAD/src/schemas/v1.22.json -------------------------------------------------------------------------------- /src/schemas/v1.23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbraten/gitea-js/HEAD/src/schemas/v1.23.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbraten/gitea-js/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbraten/gitea-js/HEAD/vite.config.ts --------------------------------------------------------------------------------