@toruslabs/http-helpers
Version:
84 lines (83 loc) • 2.15 kB
JSON
{
"name": "@toruslabs/http-helpers",
"version": "9.0.0",
"description": "http helpers",
"sideEffects": false,
"main": "dist/lib.cjs/index.js",
"module": "dist/lib.esm/index.js",
"unpkg": "dist/lib.esm/index.js",
"jsdelivr": "dist/lib.esm/index.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": "torus-scripts lint --fix",
"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": "^10.x"
},
"peerDependenciesMeta": {
"@sentry/core": {
"optional": true
}
},
"dependencies": {
"deepmerge": "^4.3.1",
"loglevel": "^1.9.2"
},
"devDependencies": {
"@sentry/core": "^10.36.0",
"@toruslabs/config": "^4.0.0",
"@toruslabs/eslint-config-typescript": "^5.0.0",
"@toruslabs/torus-scripts": "^8.0.0",
"@vitest/browser-playwright": "^4.0.17",
"@vitest/coverage-istanbul": "^4.0.17",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"playwright": "^1.57.0",
"prettier": "^3.8.1",
"rimraf": "^6.1.2",
"vitest": "^4.0.17",
"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": ">=22.x",
"npm": ">=10.x"
}
}