mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-15 11:51:30 +00:00
Add shell-env integration to fetch environment variables from the user's shell config files (.zshrc, .zshenv, etc.) so that proxy settings and other exports are available in process.env for both Electron and CLI.
62 lines
1.6 KiB
JSON
62 lines
1.6 KiB
JSON
{
|
|
"name": "@usebruno/requests",
|
|
"version": "0.1.0",
|
|
"license": "MIT",
|
|
"main": "dist/cjs/index.js",
|
|
"module": "dist/esm/index.js",
|
|
"types": "dist/index.d.js",
|
|
"files": [
|
|
"dist",
|
|
"src",
|
|
"package.json"
|
|
],
|
|
"scripts": {
|
|
"clean": "rimraf dist",
|
|
"prebuild": "npm run clean",
|
|
"build": "rollup -c",
|
|
"watch": "rollup -c -w",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"prepack": "npm run test && npm run build"
|
|
},
|
|
"dependencies": {
|
|
"@faker-js/faker": "^9.7.0",
|
|
"@grpc/grpc-js": "^1.13.3",
|
|
"@grpc/proto-loader": "^0.7.15",
|
|
"@types/qs": "^6.9.18",
|
|
"axios": "^1.9.0",
|
|
"debug": "^4.4.3",
|
|
"google-protobuf": "^4.0.0",
|
|
"grpc-js-reflection-client": "^1.3.0",
|
|
"http-proxy-agent": "~7.0.2",
|
|
"https-proxy-agent": "~7.0.6",
|
|
"is-ip": "^5.0.1",
|
|
"socks-proxy-agent": "~8.0.5",
|
|
"system-ca": "^2.0.1",
|
|
"tough-cookie": "^6.0.0",
|
|
"ws": "^8.18.3",
|
|
"shell-env": "^4.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/preset-env": "^7.22.0",
|
|
"@babel/preset-typescript": "^7.22.0",
|
|
"@rollup/plugin-alias": "^5.1.1",
|
|
"@rollup/plugin-commonjs": "^23.0.2",
|
|
"@rollup/plugin-json": "^6.1.0",
|
|
"@rollup/plugin-node-resolve": "^15.0.1",
|
|
"@rollup/plugin-typescript": "^9.0.2",
|
|
"@types/jest": "^29.5.11",
|
|
"babel-jest": "^29.7.0",
|
|
"builtin-modules": "^5.0.0",
|
|
"jest": "^29.2.0",
|
|
"rollup": "3.29.5",
|
|
"rollup-plugin-dts": "^5.0.0",
|
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
"rollup-plugin-terser": "^7.0.2",
|
|
"typescript": "^4.8.4"
|
|
},
|
|
"overrides": {
|
|
"rollup": "3.29.5"
|
|
}
|
|
}
|