forked from arthurfiorette/axios-cache-interceptor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.77 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "axios-cache-interceptor",
"version": "1.4.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 <[email protected]>",
"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",
"test": "c8 --reporter lcov --reporter text node --trace-warnings -r @swc-node/register -r ./test/setup --enable-source-maps --trace-warnings --test test/**/*.test.ts",
"test:only": "c8 --reporter lcov --reporter text node --trace-warnings -r @swc-node/register -r ./test/setup --enable-source-maps --trace-warnings --test-only",
"version": "auto-changelog -p && cp CHANGELOG.md docs/src/others/changelog.md && git add CHANGELOG.md docs/src/others/changelog.md",
"format": "biome format --write .",
"lint": "biome check .",
"lint:fix": "biome check --apply-unsafe .",
"lint:ci": "biome ci ."
},
"resolutions": {
"colors": "1.4.0"
},
"dependencies": {
"cache-parser": "1.2.4",
"fast-defer": "1.1.8",
"object-code": "1.3.2"
},
"devDependencies": {
"@biomejs/biome": "1.5.2",
"@swc-node/register": "1.6.8",
"@swc/helpers": "0.5.3",
"@types/jsdom": "21.1.6",
"@types/node": "20.10.4",
"@types/webpack": "5.28.5",
"auto-changelog": "2.4.0",
"axios": "1.6.5",
"c8": "9.1.0",
"es-check": "7.1.1",
"jsdom": "23.2.0",
"ts-loader": "9.5.1",
"tslib": "2.6.2",
"typescript": "5.3.3",
"vitepress": "1.0.0-rc.37",
"webpack": "5.89.0",
"webpack-cli": "5.1.4"
},
"peerDependencies": {
"axios": "^1"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=12"
},
"runkitExampleFilename": "./examples/runkit.js"
}