@krebinkkj/safe-fetch
Version:
A fetch wrapper on top of Rust's Result
57 lines • 1.26 kB
JSON
{
"name": "@krebinkkj/safe-fetch",
"version": "1.1.4",
"description": "A fetch wrapper on top of Rust's Result",
"author": "@krebinkkj",
"license": "Apache-2.0",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.js",
"types": "dist/cjs/index.d.cts",
"type": "module",
"exports": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.cts",
"default": "./dist/cjs/index.cjs"
}
},
"sideEffects": false,
"files": [
"dist/"
],
"engines": {
"node": ">=18"
},
"keywords": [
"discord",
"api",
"http",
"zentra",
"typescript",
"ts",
"yarn"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@sapphire/result": "^2.7.2"
},
"devDependencies": {
"@favware/cliff-jumper": "^6.0.0",
"tsup": "^8.5.0",
"typescript": "~5.8.3"
},
"scripts": {
"test": "eslint src --ext ts -c ../../package.json",
"build": "tsup",
"watch": "tsup --watch",
"typecheck": "tsc -p tsconfig.eslint.json",
"lint": "eslint src --ext ts --fix -c ../../package.json",
"bump": "cliff-jumper",
"check-update": "cliff-jumper --dry-run"
}
}