-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
84 lines (84 loc) · 2.15 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@misskey-dev/node-http-message-signatures",
"version": "0.0.10",
"description": "",
"type": "module",
"engines": {
"node": ">=18.4.0"
},
"keywords": [
"rfc9421",
"rfc3230",
"rfc9530",
"http",
"signature",
"signing",
"activitypub",
"webcrypto",
"pkcs1",
"rfc8017",
"spki",
"publickey",
"rfc5280"
],
"author": "mei23 <m@m544.net>",
"contributors": [
{
"name": "mei23",
"email": "m@m544.net"
},
{
"name": "tamaina",
"email": "tamaina@hotmail.co.jp"
}
],
"license": "MIT",
"repository": "https://github.com/misskey-dev/node-http-message-signatures.git",
"bugs": "https://github.com/misskey-dev/node-http-message-signatures/issues",
"main": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"scripts": {
"eslint": "eslint --quiet \"src/**/*.ts\"",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --silent=false --verbose false",
"build": "NODE_ENV=production node build.js && tsc --project tsconfig.build.json",
"performance": "node ./test/performance/draft.js",
"import-key-ram": "node --expose-gc ./test/performance/import-key-ram.js"
},
"packageManager": "pnpm@8.15.4",
"files": [
"dist",
"LICENSE"
],
"dependencies": {
"@lapo/asn1js": "^2.0.4",
"rfc4648": "^1.5.3",
"structured-headers": "^1.0.1"
},
"devDependencies": {
"@fastify/compress": "^7.0.0",
"@jest/globals": "^29.7.0",
"@misskey-dev/eslint-plugin": "^1.0.0",
"@peertube/http-signature": "^1.7.0",
"@swc/core": "^1.4.2",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.20",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"bytes": "^3.1.2",
"chalk": "^5.3.0",
"esbuild": "^0.20.1",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"fastify": "^4.26.2",
"fastify-raw-body": "^4.3.0",
"jest": "^29.7.0",
"jest-mock": "^29.7.0",
"typescript": "^5.3.3"
}
}