- 37개 파일 IP → zioinfo.co.kr 치환 (소스/매뉴얼/설정/하네스) - Manager DrConsole/NetworkConsole/CsapConsole 빌드 + /var/www/manager/ 배포 - 테스트: Manager HTTP 200, ITSM 신규 API 7개 전체 200 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
66 lines
1.6 KiB
JSON
66 lines
1.6 KiB
JSON
{
|
|
"name": "@urql/exchange-retry",
|
|
"version": "0.3.0",
|
|
"description": "An exchange for operation retry support in urql",
|
|
"sideEffects": false,
|
|
"homepage": "https://formidable.com/open-source/urql/docs/",
|
|
"bugs": "https://github.com/FormidableLabs/urql/issues",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/FormidableLabs/urql.git",
|
|
"directory": "exchanges/retry"
|
|
},
|
|
"keywords": [
|
|
"urql",
|
|
"graphql client",
|
|
"formidablelabs",
|
|
"exchanges",
|
|
"retry"
|
|
],
|
|
"main": "dist/urql-exchange-retry",
|
|
"module": "dist/urql-exchange-retry.mjs",
|
|
"types": "dist/types/index.d.ts",
|
|
"source": "src/index.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/urql-exchange-retry.mjs",
|
|
"require": "./dist/urql-exchange-retry.js",
|
|
"types": "./dist/types/index.d.ts",
|
|
"source": "./src/index.ts"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"files": [
|
|
"LICENSE",
|
|
"CHANGELOG.md",
|
|
"README.md",
|
|
"dist/"
|
|
],
|
|
"scripts": {
|
|
"test": "jest",
|
|
"clean": "rimraf dist",
|
|
"check": "tsc --noEmit",
|
|
"lint": "eslint --ext=js,jsx,ts,tsx .",
|
|
"build": "rollup -c ../../scripts/rollup/config.js",
|
|
"prepare": "node ../../scripts/prepare/index.js",
|
|
"prepublishOnly": "run-s clean build"
|
|
},
|
|
"jest": {
|
|
"preset": "../../scripts/jest/preset"
|
|
},
|
|
"devDependencies": {
|
|
"graphql": "^15.4.0"
|
|
},
|
|
"peerDependencies": {
|
|
"graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@urql/core": ">=2.3.1",
|
|
"wonka": "^4.0.14"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|