{ "name": "@gitea/sdk", "version": "1.0.0", "description": "Official TypeScript/JavaScript SDK for the Gitea API with chunked upload support", "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "files": [ "dist", "src" ], "scripts": { "build": "tsup src/index.ts --format cjs,esm --dts", "dev": "tsup src/index.ts --format cjs,esm --dts --watch", "lint": "eslint src --ext .ts", "test": "vitest", "typecheck": "tsc --noEmit" }, "keywords": [ "gitea", "git", "api", "sdk", "client", "upload", "chunked" ], "author": "The Gitea Authors", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/go-gitea/gitea.git", "directory": "sdk/typescript" }, "bugs": { "url": "https://github.com/go-gitea/gitea/issues" }, "homepage": "https://docs.gitea.io/sdk/typescript", "engines": { "node": ">=16.0.0" }, "devDependencies": { "@types/node": "^20.10.0", "eslint": "^8.55.0", "tsup": "^8.0.0", "typescript": "^5.3.0", "vitest": "^1.0.0" } }