-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 1.9 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
{
"name": "@cpsoinos/vite-plugin-http2-proxy",
"version": "0.1.0",
"description": "A Vite plugin that allows you to proxy requests to an HTTP2 server.",
"keywords": [
"vite",
"vite-plugin",
"http2",
"http2-proxy",
"proxy",
"https-proxy",
"vite-plugin-http2-proxy"
],
"bugs": {
"url": "https://github.com/cpsoinos/vite-plugin-http2-proxy/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cpsoinos/vite-plugin-http2-proxy"
},
"license": "MIT",
"author": "Corey Psoinos <coreypsoinos@gmail.com>",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"ci:format": "prettier --write --check --no-error-on-unmatched-pattern \"**/*.{js,jsx,ts,tsx,md,json,yml,yaml}\"",
"ci:publish": "pnpm build && changeset publish",
"ci:version": "changeset version",
"dev": "tsup --watch",
"format": "prettier --write .",
"lint": "eslint ./src/ --ext .ts",
"lint:fix": "eslint ./src/ --ext .ts --fix",
"prepare": "husky"
},
"lint-staged": {
"package.json": [
"npx sort-package-json"
],
"*.{js,jsx,ts,tsx,cjs,mjs,cts,mts}": [
"eslint --fix",
"prettier --write"
],
"*.{css,postcss,json,html,md,yml}": [
"prettier --write"
]
},
"dependencies": {
"http2-proxy": "^5.0.53"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@cpsoinos/eslint-config-typescript": "^0.2.5",
"@cpsoinos/prettier-config": "^1.0.0",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"vite": "^5.1.4"
},
"packageManager": "pnpm@8.15.4"
}