95 lines
2.7 KiB
JSON

{
"name": "axios-cache-interceptor",
"version": "1.2.0",
"description": "Cache interceptor for axios",
"keywords": [
"axios",
"cache",
"interceptor",
"adapter",
"http",
"plugin",
"wrapper"
],
"homepage": "https://axios-cache-interceptor.js.org",
"bugs": "https://github.com/arthurfiorette/axios-cache-interceptor/issues",
"repository": "https://github.com/arthurfiorette/axios-cache-interceptor.git",
"funding": "https://github.com/arthurfiorette/axios-cache-interceptor?sponsor=1",
"license": "MIT",
"author": "Arthur Fiorette <npm@arthur.place>",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./dev": {
"import": "./dev/index.mjs",
"require": "./dev/index.cjs",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json",
"./*": "./*"
},
"main": "./dist/index.cjs",
"jsdelivr": "./dist/index.bundle.js",
"unpkg": "./dist/index.bundle.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"benchmark": "cd benchmark && pnpm start",
"build": "sh build/build.sh",
"check": "sh build/check.sh",
"docs:build": "vitepress build docs",
"docs:dev": "vitepress dev docs --port 1227",
"docs:serve": "vitepress serve docs",
"format": "prettier --write .",
"lint": "eslint . --ext .ts",
"test": "jest --verbose --coverage",
"version": "auto-changelog -p && cp CHANGELOG.md docs/src/others/changelog.md && git add CHANGELOG.md docs/src/others/changelog.md"
},
"resolutions": {
"colors": "1.4.0"
},
"dependencies": {
"cache-parser": "^1.2.4",
"fast-defer": "^1.1.7",
"object-code": "^1.2.4"
},
"devDependencies": {
"@arthurfiorette/prettier-config": "*",
"@types/jest": "^29.5.2",
"@types/node": "^18.16.16",
"@types/webpack": "^5.28.1",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"auto-changelog": "^2.4.0",
"axios": "^1.4.0",
"es-check": "^7.1.1",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^2.8.8",
"prettier-plugin-jsdoc": "^0.4.2",
"prettier-plugin-organize-imports": "^3.2.2",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.3",
"tslib": "^2.5.3",
"typescript": "^5.1.3",
"vitepress": "1.0.0-beta.3",
"webpack": "^5.86.0",
"webpack-cli": "^5.1.4"
},
"peerDependencies": {
"axios": "^1"
},
"packageManager": "pnpm@7.27.0",
"engines": {
"node": ">=12"
},
"runkitExampleFilename": "./examples/runkit.js"
}