-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
37 lines (37 loc) · 1.07 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
{
"name": "@interledger/http-signature-utils",
"version": "1.0.3",
"description": "Provides utilities for working with HTTP signatures",
"repository": {
"type": "git",
"url": "https://github.com/interledger/open-payments.git",
"directory": "packages/http-signature-utils"
},
"homepage": "https://github.com/interledger/open-payments/tree/main/packages/http-signature-utils#readme",
"publishConfig": {
"access": "public"
},
"author": "Interledger Tech Team <tech@interledger.org>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "pnpm clean && tsc --build tsconfig.json",
"clean": "rm -fr dist/",
"test": "jest --passWithNoTests --maxWorkers=50%",
"prepack": "pnpm build"
},
"dependencies": {
"http-message-signatures": "^0.1.2",
"httpbis-digest-headers": "github:interledger/httpbis-digest-headers",
"jose": "^4.13.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/node": "^18.7.12",
"@types/uuid": "^9.0.0",
"typescript": "^4.9.5"
}
}