-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
55 lines (55 loc) · 1.24 KB
/
package.json
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
{
"name": "structured-headers",
"version": "2.0.0",
"description": "Implementation of Structured Field Values for HTTP (RFC9651, RFC8941)",
"type": "module",
"exports": {
"import": "./dist/index.js",
"require": "./cjs/index.cjs"
},
"source": "src/index.ts",
"scripts": {
"test": "make test",
"prepare": "make build",
"build": "make build"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/evert/structured-header.git"
},
"keywords": [
"http",
"structured-header",
"structured-fields",
"structured fields",
"RFC9651",
"RFC8941",
"headers"
],
"author": "Evert Pot <me@evertpot.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/evert/structured-header/issues"
},
"files": [
"src/",
"dist/",
"cjs/",
"LICENSE"
],
"homepage": "https://github.com/evert/structured-header#readme",
"devDependencies": {
"@types/node": "^18.19.10",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"base32-decode": "^1.0.0",
"base32-encode": "^2.0.0",
"eslint": "^9.11.1",
"tsup": "^8.3.0",
"typescript": "^5.1.3"
},
"engines": {
"npm": ">=6",
"node": ">=18"
}
}