-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 1.87 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
{
"$schema": "https://json.schemastore.org/package",
"name": "5socks",
"version": "1.0.1",
"description": "A tiny utility to make working with 5socks less painful.",
"keywords": [
"5socks",
"socks",
"socks5",
"proxy",
"cli",
"helper"
],
"homepage": "https://github.com/nicoandmee/5socks",
"bugs": "https://github.com/nicoandmee/5socks/issues",
"repository": "[email protected]:nicoandmee/5socks.git",
"license": "MIT",
"author": "Nico <[email protected]> (https://nicomee.com/)",
"type": "module",
"main": "dist/index.js",
"bin": {
"5socks": "./dist/index.js"
},
"scripts": {
"prebuild": "run-s clean",
"build": "run-s build:*",
"build:clean": "run-s clean",
"build:tsc": "tsc",
"clean": "rimraf dist",
"lint": "run-p lint:*",
"lint:eslint": "eslint src --ext .ts --fix",
"lint:sort": "sort-package-json",
"upgrade": "ncu -u --packageFile package.json"
},
"dependencies": {
"arg": "^5.0.2",
"chalk": "^5.0.1",
"clipboardy": "^3.0.0",
"debug": "^4.3.4",
"got": "^12.5.0",
"playwright": "^1.25.2",
"playwright-extra": "^4.3.5",
"puppeteer-extra-plugin-stealth": "^2.11.1",
"socks-proxy-agent": "^7.0.0",
"tslib": "^2.4.0",
"tslog": "^3.3.4"
},
"devDependencies": {
"@nodesuite/eslint-config": "^0.1.13",
"@rushstack/eslint-config": "^3.0.1",
"@types/debug": "^4.1.7",
"@types/node": "^18.7.18",
"@typescript-eslint/parser": "^5.37.0",
"esbuild": "^0.15.7",
"esbuild-register": "^3.3.3",
"eslint": "8.22.0",
"npm-check-updates": "^15.3.4",
"npm-run-all": "^4.1.5",
"prettier-config-standard": "^5.0.0",
"sort-package-json": "^1.57.0",
"tsup": "^6.2.3",
"typescript": "4.7.4"
},
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}