-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.84 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.84 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
{
"name": "@isdk/proxy-server",
"version": "0.2.0",
"description": "Simple Proxy server for @isdk/proxy, providing a seamless caching layer for network requests.",
"license": "MIT",
"author": "Riceball LEE <snowyu.lee@gmail.com>",
"homepage": "https://github.com/isdk/proxy-server.js",
"repository": {
"type": "git",
"url": "git://github.com/isdk/proxy-server.js.git"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"scripts": {
"build-fast": "tsup",
"build": "pnpm run build-fast --dts-resolve --dts && pnpm run doc:md",
"clean": "rm -fr web docs dist",
"doc": "typedoc --plugin none --out web",
"doc:md": "typedoc --plugin typedoc-plugin-markdown --out docs",
"style": "pnpm run format:base -c && pnpm run lint",
"style:fix": "pnpm run format:fix && pnpm run lint:fix",
"format": "pnpm run format:base -c",
"format:base": "prettier \"src/**/*.{ts,tsx,js,jsx,css,scss,sass,less,md}\"",
"format:fix": "pnpm run format:base --write",
"lint": "eslint .",
"lint:fix": "pnpm run lint --fix",
"test": "vitest run",
"release": "pnpm run clean && pnpm run build && git add -f docs && git ci -m 'docs: update API docs' && pnpm dlx commit-and-tag-version -s",
"release.alpha": "pnpm run release -- --prerelease alpha"
},
"dependencies": {
"@whatwg-node/server": "^0.10.18",
"ky": "^2.0.2",
"undici": "^6.25.0"
},
"peerDependencies": {
"@isdk/proxy": ">=0.2"
},
"devDependencies": {
"@antfu/eslint-config": "^6.7.3",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@fastify/cookie": "^11.0.2",
"@fastify/formbody": "^8.0.2",
"@isdk/proxy": "workspace:^",
"@types/cacache": "^20.0.1",
"@types/http-cache-semantics": "^4.2.0",
"@types/jest": "^29.5.14",
"@types/jsdom": "^27.0.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "~8.41.0",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-tsdoc": "^0.4.0",
"fastify": "^5.6.1",
"http-cache-semantics": "^4.2.0",
"prettier": "^3.6.2",
"terser": "^5.44.0",
"tsup": "^8.5.0",
"tsx": "^4.20.5",
"type-fest": "^4.41.0",
"typedoc": "^0.28.16",
"typedoc-plugin-markdown": "^4.8.1",
"typescript": "~5.7.3",
"vite": "^7.1.4",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4",
"vitest-fetch-mock": "^0.4.5"
},
"files": [
"docs",
"dist"
],
"keywords": [
"server",
"interceptor",
"cache",
"proxy",
"@isdk/proxy",
"adapter"
],
"maintainers": [
"Riceball LEE <snowyu.lee@gmail.com>"
],
"engines": {
"node": ">=20.11.1"
},
"types": "./dist/index.d.ts"
}