-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.82 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
58
59
60
61
62
63
64
65
{
"name": "@harshalkatakiya/http-status",
"version": "1.0.2",
"type": "module",
"description": "A comprehensive collection of HTTP status codes and their standard phrases.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"./codes": {
"import": "./dist/codes/index.js",
"types": "./dist/codes/index.d.ts"
},
"./phrases": {
"import": "./dist/phrases/index.js",
"types": "./dist/phrases/index.d.ts"
},
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"release": "tsc && npm version patch && npm publish --access public --tag latest"
},
"dependencies": {},
"devDependencies": {
"typescript": "^5.9.3"
},
"packageManager": "bun@1.3.4",
"license": "MIT",
"homepage": "https://www.npmjs.com/package/@harshalkatakiya/http-status",
"repository": {
"type": "git",
"url": "git+https://github.com/Harshalkatakiya/http-status.git"
},
"bugs": {
"url": "https://github.com/Harshalkatakiya/http-status/issues"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"author": {
"name": "Harshal Katakiya",
"email": "katakiyaharshl001@gmail.com",
"url": "https://github.com/Harshalkatakiya"
},
"keywords": [
"HTTP Status Codes",
"HTTP Status Phrases",
"HTTP Status Messages",
"HTTP Status Definitions",
"HTTP Status Descriptions",
"HTTP Status List",
"HTTP Status Codes Collection",
"HTTP Status Reference",
"HTTP Status Utility"
]
}