-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 847 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 847 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
{
"name": "httpstatussearcher",
"description": "Search a HTTP Status Code and description",
"version": "1.0.3",
"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",
"test": "pnpm build && node --test test/core.test.js",
"clean": "rimraf dist",
"prepublish": "pnpm build"
},
"bin": {
"hcode": "./dist/index.js"
},
"dependencies": {
"consola": "^3.4.2",
"enquirer": "^2.4.1"
},
"devDependencies": {
"@types/node": "^25.5.2",
"rimraf": "^6.1.3",
"typescript": "^6.0.2"
},
"files": [
"dist",
"README.md",
"package.json",
"LICENSE"
]
}