@toruslabs/http-helpers
Version:
84 lines (83 loc) • 2.14 kB
JSON
{
"name": "@toruslabs/http-helpers",
"version": "8.1.1",
"description": "http helpers",
"sideEffects": false,
"main": "dist/lib.cjs/index.js",
"module": "dist/lib.esm/index.js",
"unpkg": "dist/httpHelpers.umd.min.js",
"jsdelivr": "dist/httpHelpers.umd.min.js",
"types": "dist/lib.cjs/types/index.d.ts",
"scripts": {
"start": "torus-scripts start",
"build": "torus-scripts build",
"release": "torus-scripts release",
"prepack": "npm run build",
"lint": "eslint --fix 'src/**/*.ts'",
"test": "npm run test:node && npm run test:browsers",
"test:node": "vitest run --config test/configs/node.config.mts --coverage",
"test:browsers": "vitest run --config test/configs/browsers.config.mts --coverage",
"prepare": "husky"
},
"files": [
"dist"
],
"peerDependencies": {
"@babel/runtime": "^7.x",
"@sentry/core": "^9.x"
},
"peerDependenciesMeta": {
"@sentry/core": {
"optional": true
}
},
"dependencies": {
"deepmerge": "^4.3.1",
"loglevel": "^1.9.2"
},
"devDependencies": {
"@sentry/core": "^9.5.0",
"@toruslabs/config": "^3.1.0",
"@toruslabs/eslint-config-typescript": "^4.1.0",
"@toruslabs/torus-scripts": "^7.1.2",
"@vitest/browser": "^3.0.8",
"@vitest/coverage-istanbul": "^3.0.8",
"eslint": "^9.22.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"playwright": "^1.51.0",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"vitest": "^3.0.8",
"vitest-fetch-mock": "^0.4.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/torusresearch/http-helpers.git"
},
"keywords": [
"torus"
],
"author": "Torus Labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/torusresearch/http-helpers/issues"
},
"homepage": "https://github.com/torusresearch/http-helpers#readme",
"lint-staged": {
"!(*d).{js,ts}": [
"eslint --cache --fix",
"prettier --write"
],
"*.{json, md}": [
"prettier --write"
]
},
"overrides": {
"esbuild": "^0.25.0"
},
"engines": {
"node": ">=20.x",
"npm": ">=9.x"
}
}