-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 848 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 848 Bytes
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
{
"name": "httpstatussearcher",
"description": "Search a HTTP Status Code and description",
"version": "1.0.2",
"homepage": "https://github.com/Mimexe/httpstatussearcher",
"author": "Mime (https://github.com/Mimexe)",
"repository": "Mimexe/httpstatussearcher",
"license": "MIT",
"type": "module",
"scripts": {
"start": "pnpm build && node dist/index.js",
"build": "pnpm clean && tsc",
"clean": "rimraf dist",
"prepublish": "pnpm build"
},
"bin": {
"hcode": "./dist/index.js"
},
"dependencies": {
"axios": "^1.13.6",
"consola": "^3.4.2",
"enquirer": "^2.4.1"
},
"devDependencies": {
"@types/node": "^24.10.15",
"rimraf": "^6.1.3",
"typescript": "^5.9.3"
},
"files": [
"dist/index.js",
"README.md",
"package.json",
"package-lock.json",
"LICENSE"
]
}