-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.38 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
{
"name": "moxyjs",
"version": "0.1.2",
"description": "Distributed transparent proxy with traffic control facilities",
"author": "Pooyan Khanjankhani <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rm -rf dist; tsc",
"prepublishOnly": "npm run build"
},
"bugs": {
"url": "https://github.com/thekhanj/moxy/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thekhanj/moxy.git"
},
"keywords": [
"transparent-proxy",
"traffic-control"
],
"files": [
"dist/src/*.d.ts",
"dist/src/*.js",
"dist/src/api/*.d.ts",
"dist/src/api/*.js",
"dist/src/config/*.d.ts",
"dist/src/config/*.js",
"dist/src/database/*.d.ts",
"dist/src/database/*.js",
"dist/src/database/mongodb/*.d.ts",
"dist/src/database/mongodb/*.js",
"dist/src/proxy/*.d.ts",
"dist/src/proxy/*.js",
"dist/src/user/*.d.ts",
"dist/src/user/*.js",
"dist/src/user/ops/*.d.ts",
"dist/src/user/ops/*.js"
],
"homepage": "https://github.com/thekhanj/moxy#readme",
"bin": {
"moxy": "./dist/src/cli.js"
},
"dependencies": {
"async-mutex": "^0.5.0",
"fastify": "^4.26.2",
"minimist": "^1.2.8",
"mongoose": "^8.3.3",
"typescript": "^5.4.5",
"zod": "^3.23.5"
},
"devDependencies": {
"@types/minimist": "^1.2.5",
"@types/node": "^20.12.8",
"ts-node": "^10.9.2"
}
}