@forklaunch/universal-sdk
Version:
Cross runtime fetch library for forklaunch router sdks
59 lines • 1.71 kB
JSON
{
"name": "@forklaunch/universal-sdk",
"version": "0.3.16",
"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.17.1",
"ajv-formats": "^3.0.1",
"@forklaunch/common": "0.3.14"
},
"devDependencies": {
"@types/node": "^24.0.3",
"@typescript/native-preview": "7.0.0-dev.20250619.1",
"fetch-mock": "^12.5.3",
"jest": "^30.0.2",
"openapi3-ts": "^4.4.0",
"prettier": "^3.5.3",
"ts-jest": "^29.4.0",
"tsup": "^8.5.0",
"typedoc": "^0.28.5"
},
"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"
}
}