CoolFace
Apppublic

opusdev/vector-similarity-api

sourceHugging Faceupdated 5mo agoView on Hugging Face
1likes
package.json220 linesDownload Raw Back to axios
1{2  "name": "axios",3  "version": "1.13.5",4  "description": "Promise based HTTP client for the browser and node.js",5  "main": "./dist/node/axios.cjs",6  "module": "./index.js",7  "exports": {8    ".": {9      "types": {10        "require": "./index.d.cts",11        "default": "./index.d.ts"12      },13      "bun": {14        "require": "./dist/node/axios.cjs",15        "default": "./index.js"16      },17      "react-native": {18        "require": "./dist/browser/axios.cjs",19        "default": "./dist/esm/axios.js"20      },21      "browser": {22        "require": "./dist/browser/axios.cjs",23        "default": "./index.js"24      },25      "default": {26        "require": "./dist/node/axios.cjs",27        "default": "./index.js"28      }29    },30    "./lib/adapters/http.js": "./lib/adapters/http.js",31    "./lib/adapters/xhr.js": "./lib/adapters/xhr.js",32    "./unsafe/*": "./lib/*",33    "./unsafe/core/settle.js": "./lib/core/settle.js",34    "./unsafe/core/buildFullPath.js": "./lib/core/buildFullPath.js",35    "./unsafe/helpers/isAbsoluteURL.js": "./lib/helpers/isAbsoluteURL.js",36    "./unsafe/helpers/buildURL.js": "./lib/helpers/buildURL.js",37    "./unsafe/helpers/combineURLs.js": "./lib/helpers/combineURLs.js",38    "./unsafe/adapters/http.js": "./lib/adapters/http.js",39    "./unsafe/adapters/xhr.js": "./lib/adapters/xhr.js",40    "./unsafe/utils.js": "./lib/utils.js",41    "./package.json": "./package.json",42    "./dist/browser/axios.cjs": "./dist/browser/axios.cjs",43    "./dist/node/axios.cjs": "./dist/node/axios.cjs"44  },45  "type": "module",46  "types": "index.d.ts",47  "scripts": {48    "test": "npm run test:node && npm run test:browser && npm run test:package",49    "test:node": "npm run test:mocha",50    "test:node:coverage": "c8 npm run test:mocha",51    "test:browser": "npm run test:karma",52    "test:package": "npm run test:eslint && npm run test:exports",53    "test:eslint": "node bin/ssl_hotfix.js eslint lib/**/*.js",54    "test:mocha": "node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit",55    "test:exports": "node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit",56    "test:karma": "node ./bin/run-karma-tests.js",57    "test:karma:firefox": "node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run",58    "test:karma:server": "node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs",59    "test:build:version": "node ./bin/check-build-version.js",60    "start": "node ./sandbox/server.js",61    "preversion": "gulp version",62    "version": "npm run build && git add package.json",63    "prepublishOnly": "npm run test:build:version",64    "build": "gulp clear && cross-env NODE_ENV=production rollup -c -m",65    "examples": "node ./examples/server.js",66    "coveralls": "cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",67    "fix": "eslint --fix lib/**/*.js",68    "prepare": "husky install && npm run prepare:hooks",69    "prepare:hooks": "npx husky set .husky/commit-msg \"npx commitlint --edit $1\""70  },71  "repository": {72    "type": "git",73    "url": "https://github.com/axios/axios.git"74  },75  "keywords": [76    "xhr",77    "http",78    "ajax",79    "promise",80    "node",81    "browser",82    "fetch",83    "rest",84    "api",85    "client"86  ],87  "author": "Matt Zabriskie",88  "license": "MIT",89  "bugs": {90    "url": "https://github.com/axios/axios/issues"91  },92  "homepage": "https://axios-http.com",93  "devDependencies": {94    "@babel/core": "^7.28.6",95    "@babel/preset-env": "^7.28.6",96    "@commitlint/cli": "^20.3.1",97    "@commitlint/config-conventional": "^20.3.1",98    "@rollup/plugin-alias": "^5.1.1",99    "@rollup/plugin-babel": "^5.3.1",100    "@rollup/plugin-commonjs": "^15.1.0",101    "@rollup/plugin-json": "^4.1.0",102    "@rollup/plugin-multi-entry": "^4.1.0",103    "@rollup/plugin-node-resolve": "^9.0.0",104    "abortcontroller-polyfill": "^1.7.8",105    "auto-changelog": "^2.5.0",106    "body-parser": "^1.20.4",107    "c8": "^10.1.3",108    "chalk": "^5.6.2",109    "coveralls": "^3.1.1",110    "cross-env": "^7.0.3",111    "dev-null": "^0.1.1",112    "es6-promise": "^4.2.8",113    "eslint": "^8.57.1",114    "express": "^4.22.1",115    "formdata-node": "^5.0.1",116    "formidable": "^2.1.5",117    "fs-extra": "^10.1.0",118    "get-stream": "^3.0.0",119    "gulp": "^4.0.2",120    "handlebars": "^4.7.8",121    "husky": "^8.0.3",122    "istanbul-instrumenter-loader": "^3.0.1",123    "jasmine-core": "^2.99.1",124    "karma": "^6.4.4",125    "karma-chrome-launcher": "^3.2.0",126    "karma-firefox-launcher": "^2.1.3",127    "karma-jasmine": "^1.1.2",128    "karma-jasmine-ajax": "^0.1.13",129    "karma-rollup-preprocessor": "^7.0.8",130    "karma-safari-launcher": "^1.0.0",131    "karma-sauce-launcher": "^4.3.6",132    "karma-sinon": "^1.0.5",133    "karma-sourcemap-loader": "^0.4.0",134    "memoizee": "^0.4.17",135    "minimist": "^1.2.8",136    "mocha": "^10.8.2",137    "multer": "^1.4.4",138    "pacote": "^20.0.0",139    "pretty-bytes": "^6.1.1",140    "rollup": "^2.79.2",141    "rollup-plugin-auto-external": "^2.0.0",142    "rollup-plugin-bundle-size": "^1.0.3",143    "rollup-plugin-terser": "^7.0.2",144    "selfsigned": "^3.0.1",145    "sinon": "^4.5.0",146    "stream-throttle": "^0.1.3",147    "string-replace-async": "^3.0.2",148    "tar-stream": "^3.1.7",149    "typescript": "^4.9.5"150  },151  "browser": {152    "./lib/adapters/http.js": "./lib/helpers/null.js",153    "./lib/platform/node/index.js": "./lib/platform/browser/index.js",154    "./lib/platform/node/classes/FormData.js": "./lib/helpers/null.js"155  },156  "react-native": {157    "./lib/adapters/http.js": "./lib/helpers/null.js",158    "./lib/platform/node/index.js": "./lib/platform/browser/index.js",159    "./lib/platform/node/classes/FormData.js": "./lib/helpers/null.js"160  },161  "jsdelivr": "dist/axios.min.js",162  "unpkg": "dist/axios.min.js",163  "typings": "./index.d.ts",164  "dependencies": {165    "follow-redirects": "^1.15.11",166    "form-data": "^4.0.5",167    "proxy-from-env": "^1.1.0"168  },169  "bundlesize": [170    {171      "path": "./dist/axios.min.js",172      "threshold": "5kB"173    }174  ],175  "contributors": [176    "Matt Zabriskie (https://github.com/mzabriskie)",177    "Dmitriy Mozgovoy (https://github.com/DigitalBrainJS)",178    "Nick Uraltsev (https://github.com/nickuraltsev)",179    "Jay (https://github.com/jasonsaayman)",180    "Emily Morehouse (https://github.com/emilyemorehouse)",181    "Rubén Norte (https://github.com/rubennorte)",182    "Justin Beckwith (https://github.com/JustinBeckwith)",183    "Martti Laine (https://github.com/codeclown)",184    "Xianming Zhong (https://github.com/chinesedfan)",185    "Remco Haszing (https://github.com/remcohaszing)",186    "Willian Agostini (https://github.com/WillianAgostini)",187    "Rikki Gibson (https://github.com/RikkiGibson)",188    "Ben Carp (https://github.com/carpben)"189  ],190  "sideEffects": false,191  "commitlint": {192    "rules": {193      "header-max-length": [194        2,195        "always",196        130197      ]198    },199    "extends": [200      "@commitlint/config-conventional"201    ]202  },203  "c8": {204    "all": true,205    "include": [206      "lib/**/*.js",207      "lib/**/*.ts"208    ],209    "exclude": [210      "test",211      "sandbox"212    ],213    "reporter": [214      "text",215      "lcov",216      "html"217    ],218    "report-dir": "./coverage"219  }220}