UNPKG

@forklaunch/universal-sdk

Version:

Cross runtime fetch library for forklaunch router sdks

59 lines 1.71 kB
{ "name": "@forklaunch/universal-sdk", "version": "0.7.29", "description": "Cross runtime fetch library for forklaunch router sdks", "keywords": [ "fetch", "http", "express", "hyper-express" ], "homepage": "https://github.com/forklaunch/forklaunch-js#readme", "bugs": { "url": "https://github.com/forklaunch/forklaunch-js/issues" }, "repository": { "type": "git", "url": "git+https://github.com/forklaunch/forklaunch-js.git" }, "license": "MIT", "author": "Rohin Bhargava", "exports": { ".": { "types": "./lib/index.d.ts", "import": "./lib/index.mjs", "require": "./lib/index.js", "default": "./lib/index.js" } }, "types": "lib/index.d.ts", "files": [ "lib/**" ], "dependencies": { "ajv": "^8.18.0", "ajv-formats": "^3.0.1", "@forklaunch/common": "0.6.29" }, "devDependencies": { "@types/node": "^25.3.0", "@typescript/native-preview": "7.0.0-dev.20260223.1", "fetch-mock": "^12.6.0", "jest": "^30.2.0", "openapi3-ts": "^4.5.0", "prettier": "^3.8.1", "ts-jest": "^29.4.6", "tsup": "^8.5.1", "typedoc": "^0.28.17" }, "scripts": { "build": "tsgo --noEmit && tsup index.ts --format cjs,esm --no-splitting --dts --tsconfig tsconfig.json --out-dir lib --clean", "clean": "rm -rf lib pnpm.lock.yaml node_modules", "docs": "typedoc --out docs *", "format": "prettier --ignore-path=.prettierignore --config .prettierrc '**/*.{ts,tsx,json}' --write", "lint": "eslint . -c eslint.config.mjs", "lint:fix": "eslint . -c eslint.config.mjs --fix", "publish:package": "./publish-package.bash", "test": "vitest --passWithNoTests" } }