-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.2 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.2 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
{
"name": "http-message-sig",
"version": "0.2.0",
"description": "HTTP Message Signatures defined by RFC 9421",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"prepublishOnly": "npm run build",
"test": "vitest",
"watch": "npm run build -- --watch src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cloudflare/web-bot-auth.git",
"directory": "packages/http-message-sig"
},
"keywords": [
"http-message-sig",
"rfc9421",
"cryptography",
"http-message-signatures",
"typescript"
],
"contributors": [
"Daniel Hensby",
"LTO Network",
"Thibault Meunier",
"Akshat Mahajan"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/cloudflare/web-bot-auth/issues"
},
"homepage": "https://github.com/cloudflare/web-bot-auth#readme",
"dependencies": {
"structured-headers": "2.0.2"
}
}