basant307/AI_Governance_Project
045
1{2 "name": "ky",3 "version": "1.8.1",4 "description": "Tiny and elegant HTTP client based on the Fetch API",5 "license": "MIT",6 "repository": "sindresorhus/ky",7 "funding": "https://github.com/sindresorhus/ky?sponsor=1",8 "author": {9 "name": "Sindre Sorhus",10 "email": "sindresorhus@gmail.com",11 "url": "https://sindresorhus.com"12 },13 "type": "module",14 "exports": {15 "types": "./distribution/index.d.ts",16 "default": "./distribution/index.js"17 },18 "main": "./distribution/index.js",19 "types": "./distribution/index.d.ts",20 "sideEffects": false,21 "engines": {22 "node": ">=18"23 },24 "scripts": {25 "test": "xo && npm run build && ava",26 "debug": "PWDEBUG=1 ava --timeout=2m",27 "release": "np",28 "build": "del-cli distribution && tsc --project tsconfig.dist.json",29 "prepare": "npm run build"30 },31 "files": [32 "distribution"33 ],34 "keywords": [35 "fetch",36 "request",37 "requests",38 "http",39 "https",40 "fetching",41 "get",42 "url",43 "curl",44 "wget",45 "net",46 "network",47 "ajax",48 "api",49 "rest",50 "xhr",51 "browser",52 "got",53 "axios",54 "node-fetch"55 ],56 "devDependencies": {57 "@sindresorhus/tsconfig": "^6.0.0",58 "@type-challenges/utils": "^0.1.1",59 "@types/body-parser": "^1.19.2",60 "@types/busboy": "^1.5.0",61 "@types/express": "^4.17.17",62 "@types/node": "^20.14.12",63 "ava": "^5.3.1",64 "body-parser": "^1.20.2",65 "busboy": "^1.6.0",66 "del-cli": "^5.1.0",67 "delay": "^6.0.0",68 "expect-type": "^0.19.0",69 "express": "^4.18.2",70 "jest-leak-detector": "^29.7.0",71 "pify": "^6.1.0",72 "playwright": "^1.45.3",73 "raw-body": "^2.5.2",74 "tsx": "^4.16.2",75 "typescript": "^5.5.4",76 "xo": "^0.58.0"77 },78 "xo": {79 "envs": [80 "browser"81 ],82 "rules": {83 "unicorn/filename-case": "off",84 "@typescript-eslint/ban-ts-comment": "off",85 "@typescript-eslint/no-unsafe-argument": "off",86 "@typescript-eslint/no-unsafe-assignment": "off",87 "@typescript-eslint/no-unsafe-return": "off",88 "@typescript-eslint/no-unsafe-call": "off",89 "@typescript-eslint/naming-convention": "off",90 "@typescript-eslint/no-unnecessary-type-assertion": "off",91 "n/no-unsupported-features/node-builtins": "off"92 }93 },94 "ava": {95 "extensions": {96 "ts": "module"97 },98 "nodeArguments": [99 "--import=tsx/esm"100 ],101 "workerThreads": false102 },103 "nyc": {104 "reporter": [105 "text",106 "html",107 "lcov"108 ],109 "extension": [110 ".ts"111 ],112 "exclude": [113 "**/test/**"114 ]115 }116}117 