-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.01 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.01 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "hpke",
"version": "1.1.0",
"description": "Hybrid Public Key Encryption (HPKE) for Node.js, Browser, Cloudflare Workers, Deno, Bun, and other Web-interoperable runtimes",
"keywords": [
"browser",
"bun",
"cloudflare",
"decrypt",
"deno",
"edge",
"electron",
"encrypt",
"hpke",
"netlify",
"next.js",
"next",
"nextjs",
"rfc9180",
"vercel",
"webcrypto",
"workerd",
"workers"
],
"homepage": "https://github.com/panva/hpke",
"repository": "panva/hpke",
"funding": {
"url": "https://github.com/sponsors/panva"
},
"license": "MIT",
"author": "Filip Skokan <panva.ip@gmail.com>",
"sideEffects": false,
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.d.ts",
"index.d.ts.map",
"index.js",
"index.ts"
],
"scripts": {
"build": "node build.cjs",
"build:other": "npx tsc -p tsconfig.test.json && npx tsc -p tsconfig.examples.json",
"docs": "npx typedoc",
"format": "prettier --log-level silent --cache --write '**/*.{ts,js,mjs,cjs,json,yml}' '**/README.md'",
"test": "node --test --no-warnings test/*.ts",
"test:browsers": "node test/browser.mjs",
"test:bun": "bun test ./test/*.ts",
"test:deno": "deno test --no-check --allow-read test/*.ts",
"test:docs": "./check-examples.sh",
"test:workerd": "./test/.workerd.sh"
},
"devDependencies": {
"@noble/ciphers": "^2.2.0",
"@noble/curves": "^2.2.0",
"@noble/hashes": "^2.2.0",
"@noble/post-quantum": "^0.6.1",
"@types/node": "^24.12.2",
"amaro": "^1.1.8",
"esbuild": "^0.28.0",
"playwright": "^1.59.1",
"prettier": "^3.8.1",
"prettier-plugin-jsdoc": "^1.8.0",
"remark-behead": "^3.1.0",
"remark-insert-headings": "^0.0.0",
"remark-toc": "^9.0.0",
"serve": "^14.2.6",
"typedoc": "^0.28.18",
"typedoc-plugin-markdown": "^4.11.0",
"typedoc-plugin-remark": "^2.0.1",
"typescript": "^6.0.2"
},
"publishConfig": {
"access": "public"
}
}