-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.29 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
{
"name": "@piki.me/set-proxy",
"version": "0.0.9",
"description": "Run commands with `http_proxy` and `https_proxy` set to the value you specified automatically.",
"main": "dist/index.js",
"type": "module",
"scripts": {
"lint": "eslint --cache --fix .",
"test": "vitest",
"coverage": "vitest run --coverage",
"build": "tsup-node",
"dev": "tsup-node --watch",
"prepack": "pnpm run build"
},
"bin": {
"sp": "dist/index.js"
},
"files": [
"dist/**/*"
],
"keywords": [
"http_proxy",
"https_proxy",
"proxy",
"command",
"命令",
"代理"
],
"author": "Piki Lee",
"license": "MIT",
"devDependencies": {
"@types/minimist": "^1.2.2",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"tsup": "^7.0.0",
"typescript": "^5.1.3"
},
"dependencies": {
"execa": "^7.0.0",
"lowdb": "^5.0.5",
"minimist": "^1.2.7",
"picocolors": "^1.0.0"
},
"types": "./dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/PikiLee/set-proxy.git"
},
"bugs": {
"url": "https://github.com/PikiLee/set-proxy/issues"
},
"homepage": "https://github.com/PikiLee/set-proxy#readme"
}