-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.27 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.27 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
{
"name": "@ryuyx/pvm",
"version": "0.0.4",
"description": "Cross-platform CLI tool for managing proxy environment variables",
"main": "dist/index.js",
"bin": {
"pvm": "dist/index.js"
},
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepublishOnly": "npm run build"
},
"keywords": [
"proxy",
"cli",
"environment",
"http-proxy",
"https-proxy",
"no-proxy",
"cross-platform"
],
"author": "Liu Yuxuan <768442726@qq.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ryuyx/pvm.git"
},
"bugs": {
"url": "https://github.com/ryuyx/pvm/issues"
},
"homepage": "https://github.com/ryuyx/pvm#readme",
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.0.0",
"conf": "^13.0.1"
},
"devDependencies": {
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"prettier": "^3.2.4",
"typescript": "^5.3.3"
}
}