-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.12 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.12 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
{
"name": "peep-proxy",
"version": "0.2.0",
"description": "A TUI HTTP proxy for developers. Proxyman, but in your terminal.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mvacoimbra/peep.git"
},
"homepage": "https://github.com/mvacoimbra/peep#readme",
"author": "Matheus Coimbra",
"keywords": [
"proxy",
"http",
"https",
"tui",
"terminal",
"debug",
"inspect",
"traffic",
"ink"
],
"bin": {
"peep": "dist/cli.js"
},
"type": "module",
"packageManager": "pnpm@10.18.1",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"format": "biome format .",
"lint": "biome lint .",
"format:fix": "biome format --write .",
"lint:fix": "biome check --write --unsafe ."
},
"files": [
"dist"
],
"dependencies": {
"chalk": "^5.6.2",
"cli-truncate": "^5.1.1",
"ink": "^4.1.0",
"meow": "^11.0.0",
"node-forge": "^1.3.3",
"react": "^18.2.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@sindresorhus/tsconfig": "^3.0.1",
"@types/node-forge": "^1.3.14",
"@types/react": "^18.0.32",
"typescript": "^5.0.3"
}
}