-
-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.94 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.94 KB
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
91
92
93
94
95
96
97
98
99
{
"name": "axios-cache-interceptor",
"version": "1.11.4",
"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": {
"type": "git",
"url": "git+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,
"type": "module",
"exports": {
".": {
"types": {
"require": "./dist/index.d.cts",
"import": "./dist/index.d.mts"
},
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
},
"./dev": {
"types": {
"require": "./dist/index.d.cts",
"import": "./dist/index.d.mts"
},
"require": "./dev/index.cjs",
"import": "./dev/index.mjs",
"default": "./dev/index.mjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"jsdelivr": "./dist/index.bundle.js",
"unpkg": "./dist/index.bundle.js",
"scripts": {
"benchmark": "cd benchmark && pnpm start",
"build": "tsdown",
"docs:build": "vitepress build docs",
"docs:dev": "vitepress dev docs --port 1227",
"docs:serve": "vitepress serve docs",
"format": "biome format --write .",
"lint": "biome check .",
"lint-ci": "biome ci .",
"lint-fix": "biome check --write --unsafe .",
"test": "c8 --reporter lcov --reporter text node --import ./test/setup.js --enable-source-maps --test test/**/*.test.ts",
"test:only": "c8 --reporter lcov --reporter text node --import ./test/setup.js --enable-source-maps --test-only",
"test:types": "tsc --noEmit",
"version": "auto-changelog -p && cp CHANGELOG.md docs/src/others/changelog.md && git add CHANGELOG.md docs/src/others/changelog.md"
},
"dependencies": {
"cache-parser": "^1.2.6",
"fast-defer": "^1.1.9",
"http-vary": "^1.0.3",
"object-code": "^2.0.0",
"try": "^1.0.3"
},
"devDependencies": {
"@arthurfiorette/biomejs-config": "2.0.1",
"@biomejs/biome": "2.3.13",
"@swc-node/register": "1.11.1",
"@swc/helpers": "0.5.18",
"@types/jsdom": "27.0.0",
"@types/node": "24.10.9",
"auto-changelog": "2.5.0",
"axios": "1.13.4",
"c8": "10.1.3",
"jsdom": "27.4.0",
"tsdown": "0.20.1",
"tslib": "2.8.1",
"typescript": "5.9.3",
"vite-bundle-analyzer": "^1.3.2",
"vitepress": "1.6.4",
"vitepress-plugin-llms": "1.10.0"
},
"peerDependencies": {
"axios": "^1"
},
"packageManager": "pnpm@10.15.0",
"engines": {
"node": ">=12"
},
"runkitExampleFilename": "./examples/runkit.js"
}