-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.6 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
{
"name": "@master4n/http-status",
"version": "2.0.2",
"description": "HTTP status code registry & lookup — machine-readable metadata for every HTTP status code (IANA, Cloudflare, Nginx), for apps and AI agents.",
"type": "module",
"private": false,
"scripts": {
"clean": "rimraf dist",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"build": "npm run clean && tsup && tsx scripts/build-manifest.ts && tsx scripts/prepare-publish.ts",
"publish:dryrun": "npm publish ./dist --dry-run",
"publish:npm": "npm publish ./dist --access public",
"prepublishOnly": "echo 'Do not publish from repo root. Run: npm run build && npm run publish:npm' && exit 1"
},
"keywords": [
"http",
"http-status",
"status-codes",
"iana",
"cloudflare",
"nginx",
"ai-agents",
"rag",
"llm",
"rest-api",
"type-safe",
"tree-shaking",
"http-status-codes",
"status-code-lookup",
"http-response-codes",
"status-code-metadata",
"rest-api-errors"
],
"author": "master4n",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Master4Novice/http-status.git"
},
"bugs": {
"url": "https://github.com/Master4Novice/http-status/issues"
},
"homepage": "https://github.com/Master4Novice/http-status#readme",
"engines": {
"node": ">=20"
},
"contributors": [
{
"name": "dwivna"
}
],
"devDependencies": {
"@types/node": "^20.11.0",
"rimraf": "^5.0.5",
"tsup": "^8.0.2",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"vitest": "^4.1.7"
}
}