mirror of
https://github.com/arthurfiorette/axios-cache-interceptor.git
synced 2025-12-08 17:36:16 +00:00
94 lines
2.7 KiB
JSON
94 lines
2.7 KiB
JSON
{
|
|
"name": "axios-cache-interceptor",
|
|
"version": "1.0.1",
|
|
"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 && yarn 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 --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.2.4",
|
|
"@types/webpack": "^5.28.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.50.0",
|
|
"@typescript-eslint/parser": "^5.50.0",
|
|
"auto-changelog": "^2.4.0",
|
|
"axios": "^1.3.1",
|
|
"es-check": "^7.0.0",
|
|
"eslint": "^8.33.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"jest": "^29.3.1",
|
|
"jest-environment-jsdom": "^29.0.0",
|
|
"prettier": "^2.5.1",
|
|
"prettier-plugin-jsdoc": "^0.4.2",
|
|
"prettier-plugin-organize-imports": "^3.2.1",
|
|
"ts-jest": "^29.0.3",
|
|
"ts-loader": "^9.2.6",
|
|
"tslib": "^2.3.1",
|
|
"typescript": "^4.9.5",
|
|
"vitepress": "^1.0.0-alpha.45",
|
|
"webpack": "^5.66.0",
|
|
"webpack-cli": "^5.0.1"
|
|
},
|
|
"peerDependencies": {
|
|
"axios": "^1"
|
|
},
|
|
"packageManager": "yarn@1.22.19",
|
|
"engines": {
|
|
"node": ">=12"
|
|
},
|
|
"runkitExampleFilename": "./examples/runkit.js"
|
|
}
|