style: formatted code

This commit is contained in:
arthurfiorette 2023-02-07 16:11:18 -03:00
parent fdab8463c6
commit 88988a3e78
No known key found for this signature in database
GPG Key ID: 9D190CD53C53C555
3 changed files with 45 additions and 37 deletions

View File

@ -2,20 +2,20 @@
"name": "@aci/benchmark",
"version": "1.0.0",
"description": "Cache interceptor for axios",
"main": "index.js",
"authors": {
"name": "Arthur Fiorette",
"email": "me@arthur.place"
},
"repository": "https://github.com/arthurfiorette/axios-cache-interceptor/@aci/docs",
"license": "MIT",
"main": "index.js",
"scripts": {
"start": "node index.js"
},
"license": "MIT",
"devDependencies": {
"axios": "^0.27.2",
"axios-cache-adapter": "^2.7.3",
"benny": "^3.7.1",
"express": "^4.18.1"
},
"authors": {
"name": "Arthur Fiorette",
"email": "me@arthur.place"
}
}

View File

@ -7,8 +7,16 @@
--vp-c-brand-dimm: #363636;
--vp-home-hero-name-color: transparent;
--vp-home-hero-name-background: -webkit-linear-gradient(120deg, hsl(15, 78%, 53%), hsl(55, 78%, 53%));
--vp-home-hero-image-background-image: -webkit-linear-gradient(45deg, hsl(0, 78%, 53%), hsl(70, 78%, 53%));
--vp-home-hero-name-background: -webkit-linear-gradient(
120deg,
hsl(15, 78%, 53%),
hsl(55, 78%, 53%)
);
--vp-home-hero-image-background-image: -webkit-linear-gradient(
45deg,
hsl(0, 78%, 53%),
hsl(70, 78%, 53%)
);
--vp-home-hero-image-filter: blur(40px);
}

View File

@ -2,10 +2,22 @@
"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",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"author": "Arthur Fiorette <npm@arthur.place>",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.mjs",
@ -20,36 +32,26 @@
"./package.json": "./package.json",
"./*": "./*"
},
"main": "./dist/index.cjs",
"jsdelivr": "./dist/index.bundle.js",
"unpkg": "./dist/index.bundle.js",
"sideEffects": false,
"runkitExampleFilename": "./examples/runkit.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"benchmark": "cd benchmark && yarn start",
"build": "sh build/build.sh",
"test": "jest --coverage",
"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",
"version": "auto-changelog -p && cp CHANGELOG.md docs/src/others/changelog.md git add CHANGELOG.md docs/src/others/changelog.md",
"benchmark": "cd benchmark && yarn start",
"docs:dev": "vitepress dev docs --port 1227",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs"
"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"
},
"funding": "https://github.com/ArthurFiorette/axios-cache-interceptor?sponsor=1",
"repository": "https://github.com/arthurfiorette/axios-cache-interceptor.git",
"author": "Arthur Fiorette <npm@arthur.place>",
"bugs": "https://github.com/arthurfiorette/axios-cache-interceptor/issues",
"homepage": "https://axios-cache-interceptor.js.org",
"keywords": [
"axios",
"cache",
"interceptor",
"adapter",
"http",
"plugin",
"wrapper"
],
"dependencies": {
"cache-parser": "^1.2.4",
"fast-defer": "^1.1.7",
@ -84,10 +86,8 @@
"axios": "^1"
},
"packageManager": "yarn@1.22.19",
"resolutions": {
"colors": "1.4.0"
},
"engines": {
"node": ">=12"
}
},
"runkitExampleFilename": "./examples/runkit.js"
}