-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.08 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
{
"name": "vite-plugin-tunnel-proxy",
"version": "0.1.4",
"description": "A proxy plugin for vite that works with https and SwitchyOmega",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Holorium/vite-plugin-tunnel-proxy.git"
},
"author": "Richard Petersen <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "eslint --ext .ts src",
"prepublish": "rm -rf ./dist/ && tsc",
"test": "mocha --exit"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"chai": "^4.3.7",
"eslint": "^8.33.0",
"eslint-config-standard-with-typescript": "^33.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "*",
"vite": "^4.0.4"
},
"dependencies": {
"colors": "^1.4.0"
}
}